简体   繁体   English

babel-loader 和版本的问题,node_modules (npm) 中也不存在 babel-loader 文件夹

[英]Problem with babel-loader and version, also babel-loader folder not present in node_modules (npm)

Steps I done: 1. Cloned project from github.我完成的步骤: 1. 从 github 克隆项目。 2. Ran command 'yarn' to start project. 2.运行命令'yarn'启动项目。 3. After running command 'yarn start' then this error comes. 3. 运行命令 'yarn start' 后出现此错误。 4. after doing steps given in error, shows same error again 4.执行错误给出的步骤后,再次显示相同的错误

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:

  C:\Users\Prathmesh Pawar\node_modules\babel-loader (version: 8.2.5)

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 C:\Users\Prathmesh Pawar\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!```

Try what the error message suggests:尝试错误消息的建议:

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.删除项目文件夹中的 package-lock.json(不是 package.json。)和/或 yarn.lock。
  2. Delete node_modules in your project folder.删除项目文件夹中的 node_modules。
  3. Remove "babel-loader" from dependencies and/or devDependencies in the package.json file in your project folder.从项目文件夹中 package.json 文件中的依赖项和/或 devDependencies 中删除“babel-loader”。
  4. Run npm install or yarn, depending on the package manager you use.运行 npm install 或 yarn,具体取决于您使用的 package 管理器。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何使用 babel-loader 转译 node_modules 模块? - How to transpile node_modules modules with babel-loader? Webpack 2 - babel-loader - 如何排除node_modules? - Webpack 2 - babel-loader - how to exclude node_modules? 为什么反应应用程序中的 node_modules/.cache/babel-loader 文件夹中有数百个 json 文件? - Why are Hundreds of json files in the node_modules/.cache/babel-loader folder in a react app? 模块构建失败(来自 ./node_modules/babel-loader/lib/index.js)Vue Js - Module build failed (from ./node_modules/babel-loader/lib/index.js) Vue Js 如何在webpack中使用babel-loader选择性地处理node_modules中的代码? - How to optionally process code in node_modules with babel-loader in webpack? 模块构建失败(来自 ./node_modules/babel-loader/lib/index.js) - Module build failed (from ./node_modules/babel-loader/lib/index.js) 错误:模块构建失败(来自 ./node_modules/babel-loader/lib/index.js):语法错误: - Error: Module build failed (from ./node_modules/babel-loader/lib/index.js): SyntaxError: 模块构建失败(来自./node_modules/babel-loader/lib/index.js): - Module build failed (from ./node_modules/babel-loader/lib/index.js): 为什么在使用 babel-loader 时要排除 node_modules? - Why would we exclude node_modules when using babel-loader? 未捕获的错误:模块构建失败(来自./node_modules/babel-loader/lib/index.js) - Uncaught Error: Module build failed (from ./node_modules/babel-loader/lib/index.js)
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM