我在安装后的脚本中进行了node-gyp重建。在此期间运行node-gyp重建将出错。如何在不进行node-gyp重建的情况下运行npm install?

最佳答案

你可以做:

npm install --ignore-scripts

但这不是完美的,因为它阻止了所有依赖项执行所有脚本。

09-17 22:49