2024-12-25 10:00:02

NPM清洁模块

有没有办法让npm取消构建node_modules下的所有模块?像npm rebuild这样的东西会删除所有构建构件,但不重新构建它们?


当前回答

我在package.json中添加了几行:

"scripts": {
  ...
  "clean": "rmdir /s /q node_modules",
  "reinstall": "npm run clean && npm install",
  "rebuild": "npm run clean && npm install && rmdir /s /q dist && npm run build --prod",
  ...
}

如果你只想清理,你可以使用这个rimraf node_modules。

其他回答

NPM CI

正如FDisk所提到的,你可以使用npm ci删除节点模块文件夹,重新安装npm包。

npm马克西

或者,你也可以使用npm prune删除安装在node_modules文件夹中没有在package.json中定义的多余的包


引用:

如何清理不在package.json中的包的node_modules文件夹? NPM ci后修剪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",

看起来效果不错。

总之,没有。

二,还没有。

然而,npm install使用——no-build标志来执行不构建的安装有一个开放的问题,它可以用来做你要求的事情。

请看这个公开的问题。

对于windows环境:

"scripts": {
    "clean": "rmdir /s /q node_modules",
    ...
}

我在package.json中添加了几行:

"scripts": {
  ...
  "clean": "rmdir /s /q node_modules",
  "reinstall": "npm run clean && npm install",
  "rebuild": "npm run clean && npm install && rmdir /s /q dist && npm run build --prod",
  ...
}

如果你只想清理,你可以使用这个rimraf node_modules。