node-sass版本兼容问题
node-sass
:rainbow: Node.js bindings to libsass
项目地址:https://gitcode.com/gh_mirrors/no/node-sass
免费下载资源
·
在yarn安装依赖的时候,报了一个这样的错:
Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime (72).....
随后在网上找到第一个办法:
1.直接升级node-sass到最新版本
npm install node-sass --dev
// 或者
yarn add node-sass --dev
但是升级到最新版本扔报错,随后找到第二个办法:
2.将电脑安装的node版本与node-sass相对应上
我电脑上node版本是16版本,对应node-sass版本为6.0+,所以我下载了node-sass@6.0.0版本,但是依然不好使,随后找到第三种方法:
3.降低node版本
项目里的packages.json的node-sass版本是@4.11.0,所以我把node版本降低到了14.18.2,终于解决了问题!!!!!
降低版本步骤:
安装node版本管理模块n:
sudo npm install n -g
版本降级/升级
sudo n 版本号
(sudo n 14.18.2)
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)