Closed
Description
Current Behavior:
When npm install
fails due to peer dep incompatibilities, something like this is printed:
npm ERR! Found: [email protected]
npm ERR! node_modules/webpack
npm ERR! dev webpack@"^5.4.0" from the root project
npm ERR! peer webpack@">=4.43.0 <6.0.0" from @pmmmwh/[email protected]
npm ERR! node_modules/@pmmmwh/react-refresh-webpack-plugin
npm ERR! dev @pmmmwh/react-refresh-webpack-plugin@"^0.4.3" from the root project
npm ERR! 7 more (babel-loader, file-loader, html-webpack-plugin, ...)
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer webpack@"^4.0.0" from [email protected]
npm ERR! node_modules/webpack-dev-server/node_modules/webpack-dev-middleware
npm ERR! webpack-dev-middleware@"^3.7.2" from [email protected]
npm ERR! node_modules/webpack-dev-server
npm ERR! dev webpack-dev-server@"^3.11.0" from the root project
npm ERR! 1 more (@pmmmwh/react-refresh-webpack-plugin)
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
The suggestion to "retry this command with --force" doesn't appear to work. npm install --force
prints exactly the same output, with only the addition of:
npm WARN using --force Recommended protections disabled.
Expected Behavior:
I would expect the suggested command to work, or I would expect it not to be suggested.
Steps To Reproduce:
- Run
npm install webpack@5 webpack-dev-server@3
. - Run
npm install --force webpack@5 webpack-dev-server@3
, as suggested by the output of the first command. - The second command fails with the same error, and the same suggestion to retry with
--force
.
Environment:
- OS: macOS 10.15.7
- Node: 14.14.0
- npm: 7.0.8