Use rimraf instead of rm -rf for Windows.

This commit is contained in:
Benjamin Tan
2016-07-31 16:36:43 +08:00
parent 2ab93f2309
commit fc53c68dd9

View File

@@ -87,7 +87,7 @@
"scripts": {
"clean": "node ./bin/clean.js",
"open-config": "node ./bin/open-config.js",
"package": "rm -rf build/ && jsx --es6module src/ build/ && node ./bin/package.js",
"package": "rimraf build/ && jsx --es6module src/ build/ && node ./bin/package.js",
"start": "jsx --es6module src/ build/ && electron .",
"test": "standard && node ./bin/check-deps.js",
"update-authors": "./bin/update-authors.sh"