-
- Downloads
Simplify install instructions by removing global grunt-cli ref
Since we already include this as a dev dependency, let's just reference our local version instead of requiring it global.
... | @@ -43,9 +43,9 @@ | ... | @@ -43,9 +43,9 @@ |
"sinon": "^1.17.6" | "sinon": "^1.17.6" | ||
}, | }, | ||
"scripts": { | "scripts": { | ||
"start": "grunt serve", | "start": "./node_modules/.bin/grunt serve", | ||
"test": "./node_modules/.bin/karma start ./karma.conf.js", | "test": "./node_modules/.bin/karma start ./karma.conf.js", | ||
"travis": "./node_modules/grunt-cli/bin/grunt ci --verbose --force & npm run test" | "travis": "./node_modules/.bin/grunt ci --verbose --force & npm run test" | ||
}, | }, | ||
"dependencies": { | "dependencies": { | ||
"bootbox": "^4.4.0", | "bootbox": "^4.4.0", | ||
... | ... |
Please sign in to comment