Проблемы с загрузчиком Babel в реакции-создания-приложения - PullRequest
0 голосов
/ 13 декабря 2018

Проблема

create-react-app инициализирует репозиторий, в котором babel-загрузчик установлен более старой версией, чем необходимо.

LOG:

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.0.4"

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:

  C:\Users\user\node_modules\babel-loader (version: 8.0.2)

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

If 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 C:\Users\User\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!

    npm ERR! code ELIFECYCLE
    npm ERR! errno 1
    npm ERR! reg@0.1.0 start: `react-scripts start`
    npm ERR! Exit status 1
    npm ERR!
    npm ERR! Failed at the reg@0.1.0 start script.
    npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

    npm ERR! A complete log of this run can be found in:
    npm ERR!     C:\Users\User\AppData\Roaming\npm-cache\_logs\2018-12-13T18_22_47_802Z-debug.log

После чегопроизошло

$ npx create-react-app reg && cd reg && npm start

То, что я пробовал

Я пытался удалить папку node_modules и package-lock.json, затем запустить npm install.

Также установлена ​​пряжа и запущена yarn && yarn start.

Я пересоздал приложение 3 раза и получил тот же результат.

Информация, которая может быть полезна

Версия узла: 10.8.0 Версия NPM: 6.5.0 Сценарии создания-реагирования-приложения / реагирования: 2.1.1 babel-loader: 8.0.4 Глобальный список пакетов (npm ls --depth=0 -g):

+-- create-react-app@2.1.1
+-- node-gyp@3.6.2
+-- npm@6.5.0
+-- yarn@1.12.3

файл package.json:

{
  "name": "reg",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "react": "^16.6.3",
    "react-dom": "^16.6.3",
    "react-scripts": "2.1.1"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },
  "eslintConfig": {
    "extends": "react-app"
  },
  "browserslist": [
    ">0.2%",
    "not dead",
    "not ie <= 11",
    "not op_mini all"
  ]
}

Ответы [ 8 ]

0 голосов
/ 02 августа 2019

У меня такая же проблема.Я решил это, удалив папку node_modules в User / и файл package-lock.json (если существует).Тогда он должен прекрасно работать.

0 голосов
/ 14 февраля 2019

У меня возникла эта проблема, и я просто добавил в

"babel-loader": "8.0.4",

мой package.json в зависимости, и это, похоже, решило проблему

0 голосов
/ 05 мая 2019

это означает, что вы устанавливаете буксировочный погрузчик

rm yarn.lock
run npm uninstall babel-loader@8.0.4
0 голосов
/ 10 февраля 2019

Однако другая версия babel-loader была обнаружена выше в дереве:

Вы должны удалить пакет babel-loader, который был обнаружен выше в дереве.Вывод говорит, что есть папка node_modules с babel-loader в ..

C: \ Users \ user \ node_modules \ babel-loader (версия: 8.0.2)

Вы также можете удалить каталог C: \ Users \ user \ node_modules, если только по какой-то причине у вас нет проекта с корнем внутри / Users / {user}

0 голосов
/ 09 января 2019

Получив ту же проблему, но уделив ей час, получите решение Когда мы запустим npm start, вы получите такую ​​ошибку, которая связана с проблемами версии для этой проблемы.Перейдите в папку node_modules:

Project->node_modules->react-scripts->package.json

проверьте файл package.json

там вы получили: "babel-loader": "8.0.4" сначала удалите: папку babel-loader для Project->node_modules->babel-loader, а затем запустите npm i babel-loader@8.0.4(это зависит от вашей версии, вы можете изменить ее следующим образом: npm i babel-loader@8.0.5) после этого может возникнуть проблема с webpack, затем выполните то же самое remvoe webpack из "Project->node_modules->webpack" и переустановите npm i webpack@4.19.1

4.19.1 * версия веб-пакета может быть изменена ..

0 голосов
/ 05 января 2019

Создайте файл .env в каталоге вашего проекта и включите в него SKIP_PREFLIGHT_CHECK=true.

0 голосов
/ 21 декабря 2018

На Mac:

Удалите конфликтующий пакет из /Users/<yourusername>/node_modules

0 голосов
/ 17 декабря 2018

Вы можете на мгновение понизить react-scripts до 1.1.5 в файле package.json, затем удалить папку node_modules и в случае использования NPM удалить файл package-lock.json, а в случае Yarn удалить файл yarn.lock.После этого переустановите зависимости и запустите сервер разработки с помощью команды yarn start или npm run start.

...