Skip to content

Commit

Permalink
chore(dep): use rimraf instead of rm (vitejs#774)
Browse files Browse the repository at this point in the history
  • Loading branch information
unbyte authored Sep 3, 2020
1 parent e2a5532 commit c401928
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"dev": "run-p dev-client dev-node",
"dev-client": "tsc -w --incremental --p src/client",
"dev-node": "tsc -w --incremental --p src/node",
"build": "rm -rf dist && tsc -p src/client && tsc -p src/node && node scripts/patchTypes",
"build": "rimraf dist && tsc -p src/client && tsc -p src/node && node scripts/patchTypes",
"lint": "prettier --write --parser typescript \"src/**/*.ts\"",
"test": "jest --clearCache && jest --runInBand --forceExit",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
Expand Down Expand Up @@ -130,6 +130,7 @@
"prettier": "^2.0.4",
"pug": "^2.0.4",
"puppeteer": "^3.0.0",
"rimraf": "^3.0.2",
"sass": "^1.26.5",
"source-map-support": "^0.5.19",
"typescript": "^3.9.6",
Expand Down

0 comments on commit c401928

Please sign in to comment.