Removed explicit references to node_modules/.bin
NPM sets up its own virtualenv like environment. There's no real need to refer to the executable explicitly. Change-Id: I5af4967903b2311b2892826ddb8f44300ec9ed9a
This commit is contained in:
parent
33f755ed2c
commit
f87bf1dce4
12
package.json
12
package.json
@ -4,15 +4,15 @@
|
||||
"description": "An all-javascript webclient for the Storyboard API",
|
||||
"main": "index.html",
|
||||
"scripts": {
|
||||
"clean": "./node_modules/.bin/grunt clean",
|
||||
"clean": "grunt clean",
|
||||
"lint": "eslint ./",
|
||||
"pretest-unit": "grunt build",
|
||||
"test-unit": "karma start ./karma-unit.conf.js",
|
||||
"test-functional": "./node_modules/.bin/grunt test:functional",
|
||||
"test-integration": "./node_modules/.bin/grunt test:integration",
|
||||
"draft": "./node_modules/.bin/grunt build:draft",
|
||||
"build": "./node_modules/.bin/grunt build",
|
||||
"serve": "./node_modules/.bin/grunt serve",
|
||||
"test-functional": "grunt test:functional",
|
||||
"test-integration": "grunt test:integration",
|
||||
"draft": "grunt build:draft",
|
||||
"build": "grunt build",
|
||||
"serve": "grunt serve",
|
||||
"postinstall": "bower install"
|
||||
},
|
||||
"repository": "https://git.openstack.org/openstack-infra/storyboard-webclient",
|
||||
|
Loading…
x
Reference in New Issue
Block a user