Skip to content

Commit

Permalink
Clear node_modules too when using clean script
Browse files Browse the repository at this point in the history
  • Loading branch information
elboletaire committed Aug 11, 2023
1 parent 40de8ad commit 91f172a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"build": "turbo build --filter=@vocdoni*",
"lint:fix": "prettier -c . --write",
"lint": "prettier -c .",
"clean": "turbo clean --filter=@vocdoni*"
"clean": "turbo clean --filter=@vocdoni* && rm -fr node_modules"
},
"dependencies": {
"tsup": "^7.2.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/chakra-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"lint": "tsc",
"build": "tsup src --dts",
"prepack": "clean-package",
"clean": "rm -rf dist .turbo"
"clean": "rm -rf dist .turbo node_modules"
},
"main": "src/index.ts",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/rainbowkit-wallets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"lint": "tsc",
"build": "tsup src --dts",
"prepack": "clean-package",
"clean": "rm -rf dist .turbo"
"clean": "rm -rf dist .turbo node_modules"
},
"peerDependencies": {
"ethers": "^5",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-providers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"lint": "tsc",
"build": "tsup src --dts",
"prepack": "clean-package",
"clean": "rm -rf dist .turbo"
"clean": "rm -rf dist .turbo node_modules"
},
"main": "src/index.ts",
"dependencies": {
Expand Down

0 comments on commit 91f172a

Please sign in to comment.