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

Broken dependency "webpack" for "react-scripts" v3.4.1 #7222

Open
DiegoDiMaulo opened this issue Oct 8, 2024 · 0 comments
Open

Broken dependency "webpack" for "react-scripts" v3.4.1 #7222

DiegoDiMaulo opened this issue Oct 8, 2024 · 0 comments
Assignees
Labels
bug something broken P1 needed for current cycle

Comments

@DiegoDiMaulo
Copy link

DiegoDiMaulo commented Oct 8, 2024

Hi,

my npm run build command fails since using plotly.js v2.35.0. I tried many versions of node/npm and they always succeed with the v2.34.0 or earlier whereas they always fail with v2.35.0 or later.

Below the complete error message. I followed all the steps but none of them solved the problem.

I wonder if it has to do with this change: Drop obsolete npm v6 installation [#7095] and I also wonder if that should not have required a major version update.

Looking forward to hearing from you. Thanks!

npm run build
> [email protected] build
> react-scripts build

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:
  /PROJECT_PATH/node_modules/webpack (version: 5.95.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 /PROJECT_PATH/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!
@gvwilson gvwilson added bug something broken P1 needed for current cycle labels Oct 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug something broken P1 needed for current cycle
Projects
None yet
Development

No branches or pull requests

3 participants