Skip to content

Commit 378cc3f

Browse files
Merge pull request #41 from RobotlegsJS/rimraf
Use rimraf to clean-up temporary folders
2 parents 8ffe5ee + dbfbe4e commit 378cc3f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818

1919
### v0.0.13
2020

21+
- Use `rimraf` instead of `rm -rf` (see #41).
22+
2123
- Update Prettier rules (see #40).
2224

2325
- Update CODEBEAT project UUID (see #38).

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"karma": "karma start --single-run",
1010
"autoformat": "prettier --config .prettierrc --write {src,test}/**/{*,*.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
"build": "webpack --env.production",
1414
"prepare": "npm run clean-up && tsc -d",
1515
"prepublishOnly": "publish-please guard",

0 commit comments

Comments
 (0)