9 lines
207 B
Bash
9 lines
207 B
Bash
|
|
rm -rf node_modules
|
||
|
|
rm -rf .turbo
|
||
|
|
rm -rf pnpm-lock.yaml
|
||
|
|
|
||
|
|
find . -name "node_modules" -type d -prune -exec rm -rf '{}' +
|
||
|
|
find . -name ".turbo" -type d -prune -exec rm -rf '{}' +
|
||
|
|
|
||
|
|
pnpm store prune
|
||
|
|
pnpm install
|