Skip to content

Commit fc93d0d

Browse files
committed
use rimraf instead of rm -rf
1 parent 2cd2986 commit fc93d0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"mocha": "mocha test/**/*.test.ts --require ts-node/register",
1010
"autoformat": "prettier --config .prettierrc --write {src,test}/**/*.ts",
1111
"tslint-check": "tslint-config-prettier-check ./tslint.json",
12-
"clean-up": "rm -rf .nyc_output && rm -rf coverage && rm -rf lib",
12+
"clean-up": "rimraf .nyc_output && rimraf coverage && rimraf lib",
1313
"prepare": "npm run clean-up && tsc -d",
1414
"prepublishOnly": "publish-please guard",
1515
"publish-please": "npm run autoformat && npm run clean-up && npm run test && publish-please"

0 commit comments

Comments
 (0)