Changed rm to rimraf in 'npm run dev' (#2483)

This commit is contained in:
Simon Lidén 2018-02-18 13:19:59 +01:00 committed by GitHub
parent 3bec266b10
commit 2ed490c07b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,7 +71,7 @@
"debug_test": "node-debug _mocha -t 0 test/index.js",
"babel": "rimraf ./lib && babel src --out-dir lib --copy-files",
"coveralls": "cat ./test/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"dev": "rm -rf ./lib && babel -w src --out-dir lib --copy-files",
"dev": "rimraf ./lib && babel -w src --out-dir lib --copy-files",
"lint": "eslint src/**",
"plaintest": "mocha --check-leaks -b -R spec test/index.js && npm run tape",
"prepublish": "npm run babel",