Create-Reaction-App:在本地计算机上部署时出现ESlint错误 [英] Create-React-App: ESlint error while deployment on local machine

查看:32
本文介绍了Create-Reaction-App:在本地计算机上部署时出现ESlint错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用的是创建-反应-应用程序(反应v16.12.0)。在Mac上运行'npm start'时出现以下错误。

[1] There might be a problem with the project dependency tree.
[1] It is likely not a bug in Create React App, but something you need to fix locally.
[1]
[1] The react-scripts package provided by Create React App requires a dependency:
[1]
[1]   "eslint": "^6.6.0"
[1]
[1] Don't try to install it manually: your package manager does it automatically.
[1] However, a different version of eslint was detected higher up in the tree:
[1]
[1]   /Users/abz/node_modules/eslint (version: 6.5.1)
[1]
[1] Manually installing incompatible versions is known to cause hard-to-debug issues.
[1]
[1] If you would prefer to ignore this check, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
[1] That will permanently disable this message but you might encounter other issues.
[1]
[1] To fix the dependency tree, try following the steps below in the exact order:
[1]
[1]   1. Delete package-lock.json (not package.json!) and/or yarn.lock in your project folder.
[1]   2. Delete node_modules in your project folder.
[1]   3. Remove "eslint" from dependencies and/or devDependencies in the package.json file in your project folder.
[1]   4. Run npm install or yarn, depending on the package manager you use.
[1]
[1] In most cases, this should be enough to fix the problem.
[1] If this has not helped, there are a few other things you can try:
[1]
[1]   5. If you used npm, install yarn (http://yarnpkg.com/) and repeat the above steps with it instead.
[1]      This may help because npm has known issues with package hoisting which may get resolved in future versions.
[1]
[1]   6. Check if /Users/abz/node_modules/eslint is outside your project directory.
[1]      For example, you might have accidentally installed something in your home folder.
[1]
[1]   7. Try running npm ls eslint in your project folder.
[1]      This will tell you which other package (apart from the expected react-scripts) installed eslint.
[1]
[1] If nothing else helps, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
[1] That would permanently disable this preflight check in case you want to proceed anyway.
[1]
[1] P.S. We know this message is long but please read the steps above :-) We hope you find them helpful!
[1]
[1] react-scripts start exited with code 1

我搜索了一下,发现

  1. 遵循许多人建议的解决方案

    • users/abz/node_modules/文件夹中删除eslint and babel-eslint
    • 从本地项目中删除package.json-lock, node_modules
    • 运行npm installnpm start

    我尝试过,但此解决方案对我不起作用。

  2. 此问题可以通过使用

    adding an `.env file` in root folder with statement `SKIP_PREFLIGHT_CHECK=true` 
    

    但是,这不是此问题的解决方案。

有帮助吗?

推荐答案

发生这种情况是因为在具有不同版本的父级上安装了依赖项。在您的情况下,它是/Users/abz/node_modules/eslint。只需从超级用户运行此命令

rm -rf node_modules/eslint

这应该可以解决您的问题。

这篇关于Create-Reaction-App:在本地计算机上部署时出现ESlint错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆