node-sass版本与NodeJS版本不匹配的问题
node-sass
:rainbow: Node.js bindings to libsass
项目地址:https://gitcode.com/gh_mirrors/no/node-sass
免费下载资源
·
npm install 报错如下
npm ERR! code 1 npm ERR! path D:\Project\git_Product\YYYY\user\node_modules\node-sass npm ERR! command failed npm ERR! command C:\WINDOWS\system32\cmd.exe /d /s /c node scripts/build.js
问题原因
node-sass 与 node 版本不匹配
卸载NodeJS安装其它版本
我使用了node :16.1.0 的版本,下载地址 https://nodejs.org/dist/v16.1.0/
NodeJS 与 node-sass对应的版本
所以node-sass我选择了 : “node-sass”: “^6.0.1”
先卸载node-sass
cnpm uninstall node-sass
如果在执行上面的命令过程中报 cnpm 命令找不到,需要执行如下命令安装 cnpm:
npm install -g cnpm -registry=https://registry.npm.taobao.org
再下载node-sass
cnpm install node-sass@^6.0.1 -S
或者在package.json文件中添加 “node-sass”: “^6.0.1” , 再次执行cnpm install。
希望可以帮助到@你
寄语[自勉]:等待虽难,但后悔更甚。
GitHub 加速计划 / no / node-sass
8.5 K
1.33 K
下载
:rainbow: Node.js bindings to libsass
最近提交(Master分支:2 个月前 )
6081731a
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3 to 4.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v3...v4)
---
updated-dependencies:
- dependency-name: actions/setup-node
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com> 9 个月前
62c0f46c
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com> 9 个月前
更多推荐
已为社区贡献2条内容
所有评论(0)