我有一个新的创建react应用程序项目,使用typescript模板:
yarn create react-app my-app --template typescript为此,我添加了Storybook:
npx sb init这给了我一个工作的故事书实例,然而,yarn build now错误。
$ 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 -但这掩盖了潜在的冲突,让两个库的必备组件一起使用的正确方法是什么?
发布于 2020-12-18 22:03:05
它是一个known issue。
如果你使用的是纱线,你可以很容易地通过分辨率来解决这个问题。将以下内容添加到您的package.json,以允许yarn解析babel-loader版本8.1.0 ( CRA所需的版本,而不是Storybook):
"resolutions": {
"babel-loader": "8.1.0"
},之后,确保运行yarn install来刷新您的依赖项并更新yarn.lock文件
发布于 2021-02-15 21:36:40
对于任何面临同样问题的npm的人。我通过删除package-lock.json,node_modules修复了这个问题。
编辑:通过对npm i和npm dedupe使用--legacy-peer-deps参数,可以在package.json中保留babel-loader隐式版本
npm i --leagcy-peer-deps为了确保问题存在于损坏的依赖关系树中,我运行了:
npm ls babel-loader最后
npm dedupe --legacy-peer-deps修复了错误依赖树的问题。也适用于webpack版本不匹配的问题。
发布于 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
https://stackoverflow.com/questions/65280848
复制相似问题