使用AngularJS应用程序,我安装了npm - > npm install
。我得到了6.4.1版本,但是当我输入npm audit
或npm 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-sass
或npm i gulp-sass
修复。我在package.json文件上获得了"gulp-sass": "^2.0.4",
。但我之前提到的错误相同。有解决方案吗?
也许你可以尝试删除你的package-lock.json
,然后重新安装gulp-sass
:
rm -f package-lock.json
npm i gulp-sass
看起来你可能有锁文件冲突。
希望这有帮助!