Skip to content

Commit

Permalink
chore(templates): replace rm -rf with rimraf
Browse files Browse the repository at this point in the history
  • Loading branch information
phatpham9 committed Feb 10, 2021
1 parent 7957772 commit d678122
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions generators/app/templates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"prebuild": "yarn clean",
"build": "rollup -c",
"postbuild": "copyfiles CHANGELOG.md LICENSE package.json README.md build",
"purge": "rm -rf node_modules",
"clean": "rm -rf build .rpt2_cache",
"purge": "rimraf node_modules",
"clean": "rimraf build .rpt2_cache",
"format": "prettier --write --ignore-path .gitignore .",
"format:check": "prettier --check --ignore-path .gitignore .",
"lint": "eslint --quiet --ignore-path .gitignore --ext .ts .",
Expand Down Expand Up @@ -43,6 +43,7 @@
"husky": "*",
"lint-staged": "*",
"prettier": "*",
"rimraf": "*",
"rollup": "*",
"standard-version": "*",
"tslib": "*",
Expand Down

0 comments on commit d678122

Please sign in to comment.