Skip to content

Commit

Permalink
fix: Allow npm scripts to be run on Windows by removing occurrences o…
Browse files Browse the repository at this point in the history
…f "/c/Users/mike/Documents/repo/tween.js".
  • Loading branch information
mikebolt committed Aug 3, 2016
1 parent 157d1c4 commit b5e62cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"dependencies": {},
"scripts": {
"test": "npm run test-unit && npm run test-correctness && npm run test-style",
"test-unit": "nodeunit $(pwd)/test/unit/nodeunitheadless.js",
"test-correctness": "jshint --config $(pwd)/test/jshintrc $(pwd)/src/Tween.js",
"test-style": "jscs --config $(pwd)/test/jscs.json $(pwd)/src/Tween.js",
"test-unit": "nodeunit test/unit/nodeunitheadless.js",
"test-correctness": "jshint --config test/jshintrc src/Tween.js",
"test-style": "jscs --config test/jscs.json src/Tween.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"author": "tween.js contributors (https://github.com/tweenjs/tween.js/graphs/contributors)",
Expand Down

0 comments on commit b5e62cc

Please sign in to comment.