web-dev-qa-db-fra.com

Problèmes avec le chargeur babel dans react-create-app

Le problème

create-react-app initialise un référentiel dans lequel babel-loader est installé avec une version plus ancienne que nécessaire.

BÛCHE:

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

Après ce qu'il s'est passé

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

Ce que j'ai essayé

J'ai essayé de supprimer le dossier node_modules et package-lock.json, puis d'exécuter npm install.

Également installé le fil et a exécuté yarn && yarn start.

J'ai recréé l'application 3 fois et j'ai obtenu le même résultat.

Informations utiles

Version du nœud: 10.8.0  
Version NPM: 6.5.0  
create-react-app/react-scripts: 2.1.1  
babel-loader: 8.0.4  
Liste globale des paquets (npm ls --depth=0 -g):

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

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

Obtenir le même problème, mais avec une heure de travail, obtenir la solution Lorsque nous exécutons npm start, vous obtenez ce type d'erreur liée à la version de ce problème . Accédez au dossier node_modules:

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

vérifier le fichier package.json 

voici ce que vous avez obtenu: "babel-loader": "8.0.4" commencez par supprimer: le dossier babel-loader pour Project->node_modules->babel-loader.__, puis exécutez npm i [email protected] (cela dépend de votre version, vous pouvez le modifier comme suit: npm i [email protected]). Si vous avez un problème avec Webpack, suivez la même chose en récupérant "Project->node_modules->webpack" .__ et en réinstallant npm i [email protected]

4.19.1 * la version de webpack peut être changée ..

5
Rawan-25

Cependant, une version différente de babel-loader a été détectée plus haut dans l'arbre:

Vous devez supprimer le paquet babel-loader détecté plus haut dans l’arbre. Le résultat dit qu'il y a un dossier node_modules avec babel-loader à ..

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

Vous pourrez peut-être également supprimer le répertoire C:\Users\user\node_modules, à moins que, pour une raison quelconque, un projet y soit implanté dans/Users/{utilisateur}.

1
alteredtastes

Créez un fichier .env dans votre répertoire de projet et incluez SKIP_PREFLIGHT_CHECK=true dans le fichier.

1
An'Apluss

Sur Mac:  

Supprimez le package en conflit de /Users/<yourusername>/node_modules

0
Ibrahim Benzer

J'avais ce problème et je viens d'ajouter dans

"babel-loader": "8.0.4",

à mon package.json dans les dépendances et il semblait résoudre le problème

0
alittlebird

Vous pouvez rétrograder momentanément de react-scripts à 1.1.5 dans le fichier package.json, puis supprimer le dossier node_modules et, dans le cas de NPM, supprimer le fichier package-lock.json et, le cas échéant, Supprimer le fichier yarn.lock. Après cela, réinstallez les dépendances et démarrez le développement. serveur avec la commande yarn start ou npm run start.

0
Cosme Lorim