如何解决这个 npm i 问题?
How to resolve this npm i issue?
尝试了不同的解决方案,但在 npm 安装过程中出现了这个问题。我已经删除了 package-lock 文件并尝试了。 --force 或 --legacy-peer-deps 选项也没有帮助。
npm WARN deprecated core-js@2.6.12: core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.
npm ERR! code 1
npm ERR! path C:\Users\HillsonGhimire\Desktop\RC\F\node_modules\node-sass
npm ERR! command failed
npm ERR! command C:\WINDOWS\system32\cmd.exe /d /s /c node scripts/build.js
npm ERR! Building: C:\Program Files\nodejs\node.exe C:\Users\HillsonGhimire\Desktop\RC\F\node_modules\node-gyp\bin\node-gyp.js rebuild --verbose --libsass_ext= --libsass_cflags= --libsass_ldflags= --libsass_library=
npm ERR! gyp info it worked if it ends with ok
npm ERR! gyp verb cli
npm 版本:8.3.1
节点版本:16.14.0
尝试使用以下代码清除 cache
:
npm clean-install
应该可以。
您可以根据您的节点版本
安装node-sass来尝试这些步骤
rm -rf node_modules package-lock.json
npm install --saveDev node-sass@6.0.1
npm install
编辑
由于弃用,将 node-sass
更改为 sass
应该可以解决此问题
尝试了不同的解决方案,但在 npm 安装过程中出现了这个问题。我已经删除了 package-lock 文件并尝试了。 --force 或 --legacy-peer-deps 选项也没有帮助。
npm WARN deprecated core-js@2.6.12: core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.
npm ERR! code 1
npm ERR! path C:\Users\HillsonGhimire\Desktop\RC\F\node_modules\node-sass
npm ERR! command failed
npm ERR! command C:\WINDOWS\system32\cmd.exe /d /s /c node scripts/build.js
npm ERR! Building: C:\Program Files\nodejs\node.exe C:\Users\HillsonGhimire\Desktop\RC\F\node_modules\node-gyp\bin\node-gyp.js rebuild --verbose --libsass_ext= --libsass_cflags= --libsass_ldflags= --libsass_library=
npm ERR! gyp info it worked if it ends with ok
npm ERR! gyp verb cli
npm 版本:8.3.1
节点版本:16.14.0
尝试使用以下代码清除 cache
:
npm clean-install
应该可以。
您可以根据您的节点版本
安装node-sass来尝试这些步骤rm -rf node_modules package-lock.json
npm install --saveDev node-sass@6.0.1
npm install
编辑
由于弃用,将 node-sass
更改为 sass
应该可以解决此问题