Skip to content

Commit

Permalink
chore(package.json): add rimraf (#199)
Browse files Browse the repository at this point in the history
* chore(package.json): add rimraf in devDependencies, clear scripts

* chore(pnpm-lock.yaml): reflect the addition of rimraf
  • Loading branch information
sukvvon authored Oct 17, 2024
1 parent 96bb333 commit a1e634f
Show file tree
Hide file tree
Showing 2 changed files with 445 additions and 545 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
"sideEffects": false,
"scripts": {
"clear": "pnpm clear:builds & pnpm clear:node_modules",
"clear:builds": "rm -rf ./dist",
"clear:node_modules": "rm -rf ./node_modules",
"clear:builds": "rimraf ./dist",
"clear:node_modules": "rimraf ./node_modules",
"prerelease": "preconstruct build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
Expand Down Expand Up @@ -77,6 +77,7 @@
"prettier": "^3.0.1",
"react": "^18",
"react-dom": "^18",
"rimraf": "^6.0.1",
"ts-jest": "^29.0.5",
"typescript": "^5.1.6"
},
Expand Down
Loading

0 comments on commit a1e634f

Please sign in to comment.