Skip to content

Commit 6c5beec

Browse files
jasonkarnsmikeproeng37
authored andcommitted
Remove redundant pathing (#56)
Manually prepending `$(npm bin)` to dependencies is redundant in npm scripts. Npm already prepends `$(npm bin)` to `$PATH` before executing scripts.
1 parent 5e3e865 commit 6c5beec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "JavaScript SDK for Optimizely X Full Stack",
55
"main": "index.js",
66
"scripts": {
7-
"test": "./node_modules/.bin/mocha ./tests.js",
7+
"test": "mocha ./tests.js",
88
"build": "webpack index.js dist/optimizely.min.js",
99
"lint": "eslint lib/**"
1010
},

0 commit comments

Comments
 (0)