Skip to content

Commit dd76e63

Browse files
committed
Fix Windows build
1 parent 095ee1b commit dd76e63

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"author": "Kirill Maltsev <maltsevkirill@gmail.com>",
77
"license": "MIT",
88
"scripts": {
9-
"compile": "rm -f lib/*.js && node_modules/.bin/babel -d lib/ lib/",
10-
"lint": "node_modules/.bin/eslint *.js lib/*.es6 test/",
9+
"compile": "rimraf lib/*.js && babel -d lib/ lib/",
10+
"lint": "eslint *.js lib/*.es6 test/",
1111
"pretest": "npm run lint && npm run compile",
12-
"test": "node_modules/.bin/_mocha --compilers js:babel-core/register --recursive --check-leaks",
12+
"test": "mocha --compilers js:babel-core/register --recursive --check-leaks",
1313
"prepublish": "npm run compile"
1414
},
1515
"keywords": [
@@ -37,7 +37,8 @@
3737
"eslint": "^2.0.0",
3838
"expect": "^1.14.0",
3939
"mocha": "^2.4.5",
40-
"posthtml": "^0.8.2"
40+
"posthtml": "^0.8.2",
41+
"rimraf": "^2.5.2"
4142
},
4243
"repository": {
4344
"type": "git",

0 commit comments

Comments
 (0)