升级了下node版本,更新为v16.16.0,跑原来的项目,各种依赖不兼容错误,搜了很多解决方法,试了都无效,参考2篇文章解决了问题,在此记录一下。

1.node 版本与node-sass、sass-loader版本不兼容问题

报错:Node Sass version 7.0.1 is incompatible with ^4.0.0.

参考博文:node16.0版本 对应node-sass sass-loader 各个版本号

亲测 node v16.16.0 版本配置以下node-sass和sass-loader版本,项目可以正常运行。

"node-sass": "^6.0.1",
"sass-loader": "^10.0.1",

附npm官网:nodejs和node-sass关系对照表  

具体步骤:

方法1(修改node-sass版本):

cnpm uninstall node-sass
cnpm install node-sass@6.0.1

方法2(全部删除重装):

(1)删除项目原node_modules文件

(2)将package.json文件中的node-sass和sass-loader版本改为与Node对应的版本(node v16.16.0对应的版本即"node-sass": "^6.0.1","sass-loader": "^10.0.1")

(3)npm install

2.npm install 时报错 run `npm audit fix` to fix them, or `npm audit` for details

因为更新了Node版本,提示更新npm版本,便把npm版本也更新了下,npm新版本为8.15.0。

npm install 时报错:run `npm audit fix` to fix them, or `npm audit` for details

参考博文:npm安装时出现run `npm audit fix` to fix them, or `npm audit` for details彻底解决的办法

删除项目中node_modules 目录并执行以下命令即可: 

npm install --no-fund --no-audit
GitHub 加速计划 / no / node-sass
10
0
下载
: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> 1 年前
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> 1 年前
Logo

AtomGit 是由开放原子开源基金会联合 CSDN 等生态伙伴共同推出的新一代开源与人工智能协作平台。平台坚持“开放、中立、公益”的理念,把代码托管、模型共享、数据集托管、智能体开发体验和算力服务整合在一起,为开发者提供从开发、训练到部署的一站式体验。

更多推荐