如何在安装npm版本6.4.1时修复错误

问题描述 投票:1回答:1

使用AngularJS应用程序,我安装了npm - > npm install。我得到了6.4.1版本,但是当我输入npm auditnpm fix audit来解决一些问题时,我的信息显示如下:

λ npm audit
npm ERR! code ELOCKVERIFY
npm ERR! Errors were found in your package-lock.json, run  npm install  to fix them.
npm ERR!     Missing: gulp-sass@^2.0.4

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\iamari\AppData\Roaming\npm-cache\_logs\2019-02-20T10_16_09_010Z-debug.log

然后,我尝试用npm install gulp-sassnpm i gulp-sass修复。我在package.json文件上获得了"gulp-sass": "^2.0.4",。但我之前提到的错误相同。有解决方案吗?

node.js angularjs npm sass gulp
1个回答
0
投票

也许你可以尝试删除你的package-lock.json,然后重新安装gulp-sass

rm -f package-lock.json
npm i gulp-sass

看起来你可能有锁文件冲突。

希望这有帮助!

© www.soinside.com 2019 - 2024. All rights reserved.