Skip to content

Commit

Permalink
fix(ci): Repaired AppVeyor for Node.js@0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
twolfson committed Mar 19, 2016
1 parent 288f5d5 commit cbfd98c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion package.json
Expand Up @@ -367,8 +367,10 @@
"build": "grunt build",
"test:appveyor": "grunt test-appveyor",
"test:integration": "./scripts/integration-tests.sh",
"link": "node --eval \"path=require('path'); require('fs').symlinkSync(path.resolve(__dirname), path.resolve(__dirname, 'node_modules', 'karma'), 'junction')\"",
"unlink": "node --eval \"require('fs').unlinkSync(require('path').resolve(__dirname, 'node_modules', 'karma'))\"",
"init": "rm -rf node_modules/karma && cd node_modules && ln -nsf ../ karma && cd ../",
"init:windows": "cd .. && xcopy karma __karma /E /I && move /Y __karma karma\\node_modules\\karma && cd karma",
"init:windows": "(IF EXIST node_modules\\karma (rmdir node_modules\\karma /S /q)) && npm run link",
"appveyor": "npm run lint && npm run build && npm run test:appveyor",
"travis": "npm run lint && npm run build && npm test && npm run test:integration"
},
Expand Down

0 comments on commit cbfd98c

Please sign in to comment.