Remove unnecessary paths to executables in npm scripts

npm scripts will use the executables in `node_modules/.bin` by default: https://docs.npmjs.com/misc/scripts
This commit is contained in:
Mohsen Azimi 2016-06-20 11:55:12 -07:00 committed by GitHub
parent 8636651671
commit 9fecd471a8

View file

@ -6,9 +6,9 @@
"author": "Microsoft Corporation", "author": "Microsoft Corporation",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"simpleserver": "node_modules/.bin/http-server -c-1 ../", "simpleserver": "http-server -c-1 ../",
"release": "node_modules/.bin/gulp release", "release": "gulp release",
"website": "node_modules/.bin/gulp website" "website": "gulp website"
}, },
"repository": { "repository": {
"type": "git", "type": "git",