У меня есть новый проект приложения для создания реакции, использующий шаблон машинописного текста:
yarn create react-app my-app --template typescript
К этому я добавил Storybook с:
npx sb init
Это дало мне рабочий экземпляр сборника рассказов, однако yarn build
теперь ошибки.
$ 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, но это маскирует потенциальный конфликт, как правильно заставить две предварительные библиотеки работать вместе?
Это известная проблема.
Если вы используете пряжу, вы можете легко обойти это с помощью разрешений. Добавьте следующее в свой package.json, чтобы позволить yarn разрешать версию babel-loader 8.1.0 (версия, требуемая CRA, а не Storybook):
"resolutions": {
"babel-loader": "8.1.0"
},
После этого обязательно запустите yarn install
, чтобы обновить зависимости и обновить yarn.lock
файл.
Для тех, кто сталкивается с той же проблемой с npm
. Я исправил это, удалив package-lock.json
, node_modules
.
Обновлено: оставить неявную версию babel-loader
в package.json можно, используя параметр --legacy-peer-deps
как для npm i
, так и для npm dedupe
:
npm i --leagcy-peer-deps
Чтобы убедиться, что проблема заключается в поврежденном дереве зависимостей, я запустил:
npm ls babel-loader
Окончательно
npm dedupe --legacy-peer-deps
исправлена проблема с неправильным деревом зависимостей. Это также применимо к проблеме несоответствия версии веб-пакета.
Добавление "babel-loader": "8.1.0"
как к «devDependencies», так и к «dependencies» в файле package.json, а затем выполнение пряжи для сборки, кажется, работает на данный момент. Это известная проблема, и она открыта уже почти 2 года https://github .com/storybookjs/storybook/issues/5183
этот комментарий мне очень помог github.com/storybookjs/storybook/issues/…
я должен добавить, что версия должна быть используемой версией CRA, а не той, которую требует сборник рассказов.