Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problem with the project dependency tree."webpack": "4.42.0" #8944

Closed
vivekvt opened this issue May 3, 2020 · 4 comments
Closed

Problem with the project dependency tree."webpack": "4.42.0" #8944

vivekvt opened this issue May 3, 2020 · 4 comments

Comments

@vivekvt
Copy link

vivekvt commented May 3, 2020

pc:~/Desktop/Projects/REACT/sign-up-in$ npm start

> signuppage@0.1.0 start /home/vivekvt/Desktop/Projects/REACT/sign-up-in
> react-scripts start


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:

  "webpack": "4.42.0"

Don't try to install it manually: your package manager does it automatically.
However, a different version of webpack was detected higher up in the tree:

  /home/vivekvt/Desktop/Projects/REACT/sign-up-in/node_modules/webpack (version: 4.43.0) 

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 "webpack" 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 /home/vivekvt/Desktop/Projects/REACT/sign-up-in/node_modules/webpack is outside your project directory.
     For example, you might have accidentally installed something in your home folder.

  7. Try running npm ls webpack in your project folder.
     This will tell you which other package (apart from the expected react-scripts) installed webpack.

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! signuppage@0.1.0 start: `react-scripts start`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the signuppage@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!     /home/vivekvt/.npm/_logs/2020-05-03T04_39_54_351Z-debug.log
pc:~/Desktop/Projects/REACT/sign-up-in$ npm ls webpack
signuppage@0.1.0 /home/vivekvt/Desktop/Projects/REACT/sign-up-in
├─┬ react-scripts@3.4.1
│ └── webpack@4.42.0 
└── webpack@4.43.0 

I also deleted node_modules folder from home

@cmdcolin
Copy link

cmdcolin commented May 4, 2020

You do not want to install webpack manually into your package.json basically. I could elaborate but that is the crux of it, and the error message provides some details too.

@marslan2037
Copy link

create .env file in your root directory and add this line that file

SKIP_PREFLIGHT_CHECK=true

this will solve your problem.

@nancologist
Copy link

nancologist commented May 5, 2020

I had also the same problem so first I used the solution which @marslan2037 also mentioned but I was not satisfied nevertheless it worked (I feared that in another projects it also hunts me again!).

In Webpack official page is also installing webpack globally not recommended, so i tried with $ npm uninstall -g webpack but it did not work for me , maybe i should have added sudo ...

So finally I went to the global node_module/ folder and deleted the webpack/ folder inside it manually, and everything is ok again.

@ianschmitz
Copy link
Contributor

Thanks for chiming in everyone. There's some good suggestions here as well as information and options in the original error message.

@lock lock bot locked and limited conversation to collaborators May 20, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

5 participants