直接在文件资源管理器里面删除node_modules和.pnpm-store文件夹很慢(因为小文件太多,删除不够并行),有几种方法快速删除。
node_modules
1. remove-node-modules
npm install -g remove-node-modules
remove-node-modules
2. rimraf
npm install -g rimraf
rimraf node_modules
3. CMD
rd /s /q node_modules
4. Powershell
rm -rf node_modules
.pnpm-store
1
精简
pnpm store prune
2
定位
pnpm store path
删除文章来源:https://www.toymoban.com/news/detail-766173.html
rm -rf .pnpm-store
参考
https://blog.csdn.net/lijingjingjing22/article/details/116118701
https://blog.csdn.net/RingoH/article/details/117957190
https://github.com/orgs/pnpm/discussions/4413文章来源地址https://www.toymoban.com/news/detail-766173.html
到了这里,关于快速删除node_modules和.pnpm-store文件夹的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!