有没有办法让npm解压node_modules下的所有模块?诸如npm rebuild之类的东西会删除所有构建工件,但不重建它们吗?
NPM清洁模块
我将此添加到我的package.json中:
"build": "npm build",
"clean": "rm -rf node_modules",
"reinstall": "npm run clean && npm install",
"rebuild": "npm run clean && npm install && npm run build",
似乎运作良好。
您可以删除node_module目录
rm -rf node_modules/
对于Windows环境:
"scripts": {
"clean": "rmdir /s /q node_modules",
...
}
我在package.json中添加了几行:
If you want to
clean
only you can use thisrimraf node_modules
.