Merge pull request #753 from feross/rimraf

Use `rimraf` instead of `rm -rf` for Windows.
This commit is contained in:
Feross Aboukhadijeh
2016-08-02 18:52:35 -07:00
committed by GitHub

View File

@@ -87,7 +87,7 @@
"scripts": { "scripts": {
"clean": "node ./bin/clean.js", "clean": "node ./bin/clean.js",
"open-config": "node ./bin/open-config.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 .", "start": "jsx --es6module src/ build/ && electron .",
"test": "standard && node ./bin/check-deps.js", "test": "standard && node ./bin/check-deps.js",
"update-authors": "./bin/update-authors.sh" "update-authors": "./bin/update-authors.sh"