gpt4 book ai didi

npm - 不兼容的 babel-loader 和 babel-core 版本

转载 作者:行者123 更新时间:2023-12-04 12:03:08 27 4
gpt4 key购买 nike

我安装了 babel-core , babel-loader ,以及其他一些通过 npm 的包

npm install babel-loader babel-core ...

这导致了我的 package.json 中的以下定义
"dependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^8.0.0",
...
},

在这个问题的时候,最新版本的 babel-core确实是 6.26.3和最新版本 babel-loader8.0.0根据 npmjs.com 存储库。

但是,当我运行时 npm install再次验证一切,我收到此消息:
npm WARN babel-loader@8.0.0 requires a peer of @babel/core@^7.0.0 but none is installed. You must install peer dependencies yourself.

为什么会 babel-loader取决于 babel-core 的版本那还不存在?解决此警告的推荐方法是什么?

谢谢!

编辑 看起来像 babel-loader图书馆仅在 4 天前发布。这可能是由于发布而引起的相对较新的问题吗?

enter image description here

最佳答案

babel-loader@8.x是用于 Babel 7.x 的 Webpack 集成。 Babel 7.x 已经从 babel- 移动了所有包@babel 的前缀npm范围。

错误是正确的,你安装不正确babel-core而不是 @babel/core .

如果你想安装 Babel 6.x,你可以这样做

npm install --save-dev babel-loader@7 babel-core

但是如果你正在开始一个新项目,Babel 7 更有意义,所以你最好这样做
npm install --save-dev babel-loader @babel/core

关于npm - 不兼容的 babel-loader 和 babel-core 版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52118494/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com