Uecko_ERP/scripts/clean-and-install.sh

9 lines
207 B
Bash
Raw Permalink Normal View History

2026-05-26 11:55:26 +00:00
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