Skip to content

Commit

Permalink
Fix build on Windows
Browse files Browse the repository at this point in the history
Removed the node_modules prefix when calling eslint and jest
They are not needed since these libraries are NPM dependencies and NPM knows how to invoke them
See Running tests fails on Windows jenseng#28
  • Loading branch information
Download committed Oct 31, 2016
1 parent e4966e2 commit 8a78188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "i18n made simple",
"main": "main.js",
"scripts": {
"test": "node_modules/.bin/eslint . && node_modules/.bin/jest",
"test": "eslint . && jest",
"dist": "babel -d dist ComponentInterpolator.js extensions/i18n_js.js"
},
"author": "Jon Jensen",
Expand Down

0 comments on commit 8a78188

Please sign in to comment.