mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-05-19 20:28:53 +00:00
Ensure NPM scripts always use local binary
This commit is contained in:
parent
580a9871b9
commit
6a96a2910e
1 changed files with 5 additions and 5 deletions
10
package.json
10
package.json
|
|
@ -79,11 +79,11 @@
|
|||
"node": "0.10.x"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "gulp test",
|
||||
"start": "gulp run:dev",
|
||||
"sprites": "gulp sprites:compile",
|
||||
"postinstall": "bower --config.interactive=false install -f; gulp build;",
|
||||
"coverage": "COVERAGE=true mocha --require register-handlers.js --reporter html-cov > coverage.html; open coverage.html"
|
||||
"test": "$(npm bin)/gulp test",
|
||||
"start": "$(npm bin)/gulp run:dev",
|
||||
"sprites": "$(npm bin)/gulp sprites:compile",
|
||||
"postinstall": "$(npm bin)/bower --config.interactive=false install -f; $(npm bin)/gulp build;",
|
||||
"coverage": "COVERAGE=true $(npm bin)/mocha --require register-handlers.js --reporter html-cov > coverage.html; open coverage.html"
|
||||
},
|
||||
"devDependencies": {
|
||||
"chai": "^2.3.0",
|
||||
|
|
|
|||
Loading…
Reference in a new issue