首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Yarn Build - Babel-loader与Storybook的问题

Yarn Build - Babel-loader与Storybook的问题
EN

Stack Overflow用户
提问于 2020-12-14 05:26:13
回答 3查看 6.7K关注 0票数 22

我有一个新的创建react应用程序项目,使用typescript模板:

代码语言:javascript
复制
yarn create react-app my-app --template typescript

为此,我添加了Storybook:

代码语言:javascript
复制
npx sb init

这给了我一个工作的故事书实例,然而,yarn build now错误。

代码语言:javascript
复制
$ react-scripts build

There might be a problem with the project dependency tree.
It is likely not a bug in Create React App, but something you need to fix locally.

The react-scripts package provided by Create React App requires a dependency:

  "babel-loader": "8.1.0"

Don't try to install it manually: your package manager does it automatically.
However, a different version of babel-loader was detected higher up in the tree:

  /home/michael/pgit/my-app/node_modules/babel-loader (version: 8.2.2)

Manually installing incompatible versions is known to cause hard-to-debug issues.

If you would prefer to ignore this check, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
That will permanently disable this message but you might encounter other issues.

To fix the dependency tree, try following the steps below in the exact order:

  1. Delete package-lock.json (not package.json!) and/or yarn.lock in your project folder.
  2. Delete node_modules in your project folder.
  3. Remove "babel-loader" from dependencies and/or devDependencies in the package.json file in your project folder.
  4. Run npm install or yarn, depending on the package manager you use.

In most cases, this should be enough to fix the problem.
If this has not helped, there are a few other things you can try:

  5. If you used npm, install yarn (http://yarnpkg.com/) and repeat the above steps with it instead.
     This may help because npm has known issues with package hoisting which may get resolved in future versions.

  6. Check if /home/michael/pgit/my-app/node_modules/babel-loader is outside your project directory.
     For example, you might have accidentally installed something in your home folder.

  7. Try running npm ls babel-loader in your project folder.
     This will tell you which other package (apart from the expected react-scripts) installed babel-loader.

If nothing else helps, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
That would permanently disable this preflight check in case you want to proceed anyway.

P.S. We know this message is long but please read the steps above :-) We hope you find them helpful!

所以babel-loader不在我的任何package.json文件中,而babel都应该由CRA处理(因此警告不要自己添加它)。

我可以使用SKIP_PREFLIGHT_CHECK -但这掩盖了潜在的冲突,让两个库的必备组件一起使用的正确方法是什么?

EN

回答 3

Stack Overflow用户

回答已采纳

发布于 2020-12-18 22:03:05

它是一个known issue

如果你使用的是纱线,你可以很容易地通过分辨率来解决这个问题。将以下内容添加到您的package.json,以允许yarn解析babel-loader版本8.1.0 ( CRA所需的版本,而不是Storybook):

代码语言:javascript
复制
"resolutions": {
  "babel-loader": "8.1.0"
},

之后,确保运行yarn install来刷新您的依赖项并更新yarn.lock文件

票数 71
EN

Stack Overflow用户

发布于 2021-02-15 21:36:40

对于任何面临同样问题的npm的人。我通过删除package-lock.jsonnode_modules修复了这个问题。

编辑:通过对npm inpm dedupe使用--legacy-peer-deps参数,可以在package.json中保留babel-loader隐式版本

代码语言:javascript
复制
npm i --leagcy-peer-deps

为了确保问题存在于损坏的依赖关系树中,我运行了:

代码语言:javascript
复制
npm ls babel-loader

最后

代码语言:javascript
复制
npm dedupe --legacy-peer-deps

修复了错误依赖树的问题。也适用于webpack版本不匹配的问题。

票数 2
EN

Stack Overflow用户

发布于 2021-05-18 17:26:03

"babel-loader": "8.1.0"添加到package.json文件中的"devDependencies“和"dependencies”中,然后进行yarn构建,似乎在now.Its中是一个已知的问题,并且已经开放了近2年,现在是https://github.com/storybookjs/storybook/issues/5183

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/65280848

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档