web-dev-qa-db-ja.com

react-create-appのbabelローダーの問題

問題

create-react-appは、必要以上の古いバージョンとしてbabel-loaderがインストールされているリポジトリを初期化します。

ログ:

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! [email protected] start: `react-scripts start`
    npm ERR! Exit status 1
    npm ERR!
    npm ERR! Failed at the [email protected] 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 && yarn startを実行しました。

アプリを3回再作成し、同じ結果を得ました。

役立つ情報

ノードバージョン:10.8.
NPMバージョン:6.5.
create-react-app/react-scripts:2.1.1
babel-loader:8.0.4
グローバルパッケージリスト(npm ls --depth=0 -g):

+-- [email protected]
+-- [email protected]
+-- [email protected]
+-- [email protected]

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"
  ]
}
9
Paul Losev

同じ問題を取得しますが、解決に1時間かかりますnpm startを実行すると、この問題のバージョン関連の問題であるこの種のエラーが発生します。 node_modulesフォルダーに移動します。

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

package.jsonファイルを確認してください

"babel-loader": "8.0.4"最初に削除:Project->node_modules->babel-loaderのbabel-loaderフォルダーを実行してからnpm i [email protected]を実行します(バージョンによって異なります:npm i [email protected] .5)その後、webpackの問題が発生した場合は、「Project->node_modules->webpack」から同じことをwebpack remvoeして、npm i [email protected]を再インストールします。

4.19.1 * webpackのバージョンは変更される可能性があります。

11
Rawan-25

.envファイルをプロジェクトディレクトリに追加し、SKIP_PREFLIGHT_CHECK=trueファイル内。

7
an-apluss

Macの場合

/Users/<yourusername>/node_modulesから競合するパッケージを削除します

4
Ibrahim Benzer

ただし、ツリーの上位で別のバージョンのbabel-loaderが検出されました。

ツリーの上位で検出されたbabel-loaderパッケージを削除する必要があります。出力には、babel-loaderが格納されたnode_modulesフォルダーがあります。

C:\ Users\user\node_modules\babel-loader(バージョン:8.0.2)

何らかの理由で/ Users/{user}内にルート化されたプロジェクトがない限り、C:\ Users\user\node_modulesディレクトリも完全に削除できる場合があります。

2
alteredtastes

これは、牽引バベルローダーをインストールすることを意味します

rm yarn.lock
run npm uninstall [email protected]
0
leaez

これとまったく同じ問題がありました。 Googleでこのスレッドを見つけて、私のような初心者です。ターミナル(Macユーザー)に入力する内容は次のとおりです。

ポールが取得していたのと同じエラーが発生しているとしましょう:

"Create React Appには依存関係が必要なreact-scriptsパッケージ:" babel-loader ":" 8.0.6 "

これが私が端末に入力したものです。私は間違っているかもしれませんが、これは私のために働いたものです(私も初心者です):

ステップ1:node_modulesフォルダーとpackage_lock.jsonファイル。

ステップ2:端末で、cd-と入力します(プロジェクトフォルダーの外に出て、ホームフォルダ)

ステップ3:ターミナルでnpm i "dependency-name @ number"と入力するので、上記の例では:npm i [email protected]

ステップ4:ターミナルで、プロジェクトフォルダーに移動し、次のように入力します:npm installまたはyarn install

ステップ5:実行してみてくださいnpm startすべての問題が解決したら、開発サーバーを起動する必要があります。

注:[email protected]Webpack

0
Javed Khan

私はこの問題を抱えていて、ちょうど追加しました

"babel-loader": "8.0.4",

依存関係の私のpackage.jsonに、それは問題を修正するように見えた

0
alittlebird

一時的にダウングレードできますreact-scriptsから1.1.5 の中に package.jsonファイル、次にnode_modulesフォルダーおよびNPMを使用する場合はpackage-lock.jsonファイルおよびYarnがファイルを削除する場合yarn.lock。その後、依存関係を再インストールし、yarn start または npm run startコマンド。

0
Cosme Lorim

同じ問題が発生しました。 User /のnode_modulesフォルダーとpackage-lock.jsonファイル(存在する場合)を削除することで解決しました。それは完全に動作するはずです。

0
Phung Nguyen