Skip to content

Commit 8c695d0

Browse files
Merge pull request #36 from RobotlegsJS/rimraf
Use rimraf to clean-up temporary folders
2 parents 2cd2986 + 99b8370 commit 8c695d0

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
- Update Prettier rules (see #35).
2020

21+
- Use `rimraf` instead of `rm -rf` (see #36).
22+
2123
- Update dev dependencies to latest version.
2224

2325
### [v0.0.5](https://github.com/RobotlegsJS/RobotlegsJS-Phaser-SignalCommandMap/releases/tag/0.0.5) - 2017-09-26

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)