cli icon indicating copy to clipboard operation
cli copied to clipboard

[BUG] Peer dependency warnings are never seen when using legacy-peer-deps

Open sscaff1 opened this issue 2 years ago • 6 comments

Is there an existing issue for this?

  • [X] I have searched the existing issues

This issue exists in the latest npm version

  • [X] I am using the latest npm

Current Behavior

When using legacy peer deps, npm no longer throws a warning for uninstalled peer dependencies.

Screenshot 2023-03-07 at 2 38 52 PM

Notice no warning for eslint-config-airbnb's peers.

Expected Behavior

You should see a warning. Notice that yarn throws a warning:

Screenshot 2023-03-07 at 2 37 09 PM

Steps To Reproduce

  1. Go to codesandbox
  2. Create a new node project
  3. yarn add eslint-config-airbnb - note you get warnings
  4. rm -rf node_modules
  5. npm i eslint-config-airbnb --legacy-peer-deps=true - note you get no warnings
  6. Look in the package-lock.json and note that none of the peers have been installed

Environment

  • npm: latest
  • Node.js: LTS
  • OS Name: N/A
  • System Model Name: N/A
  • npm config: N/A

sscaff1 avatar Mar 07 '23 20:03 sscaff1

Good catch. You should also, ofc, not use legacy peer deps :-)

ljharb avatar Mar 07 '23 21:03 ljharb

+1 @ljharb. --legacy-peer-deps was meant as a stopgap solution for the ecosystem to catch up/fix issues. I think it's time to rip off the bandaid. I imagine the npm CLI team should be queuing up deprecating the flag for v10 🙏🏻 I know that pnpm will be installing peer deps by default in v8 (ref. https://twitter.com/ZoltanKochan/status/1630956825012064256) so I think it's time to drop any config that avoids/hides these conflicts.

darcyclarke avatar Mar 08 '23 02:03 darcyclarke

If you are discussing deprecating the flag then we should definitely fix this to throw warnings so that people can use those warnings to help inform them on how to resolve the conflicts and be aware how many issues are potentially building up by using the legacy flag.

valiant-code avatar May 02 '23 15:05 valiant-code

This just cost me hours of angry debugging because I didn't understand why my peer deps weren't installing and not even showing any warnings in the console. I eventually found that legacy-peer-deps has been silently enabled for months in the .npmrc of our project and everyone forgot about it because npm never tells you anywhere about it being enabled.

However, even with knowing that option was enabled I still didn't understand why npm install and npm ci wouldn't even show any warnings about missing peer deps. It just succeeded the install like everything was perfectly fine. But of course the code wouldn't run due to missing deps. So frustrating!

Susccy avatar Apr 26 '24 20:04 Susccy

This just cost me hours of angry debugging because I didn't understand why my peer deps weren't installing and not even showing any warnings in the console. I eventually found that legacy-peer-deps has been silently enabled for months in the .npmrc of our project and everyone forgot about it because npm never tells you anywhere about it being enabled.

However, even with knowing that option was enabled I still didn't understand why npm install and npm ci wouldn't even show any warnings about missing peer deps. It just succeeded the install like everything was perfectly fine. But of course the code wouldn't run due to missing deps. So frustrating!

This. Same thing happened to us. One of our developers had silently enabled --legacy-peer-deps without telling anyone, and because npm didn't throw any warnings or errors, nobody noticed the problem.

EliezerB123 avatar Aug 14 '24 11:08 EliezerB123

....Does anyone have any workaround, to get npm to display the peerDependencies that it's skipping?

Edit: As a workaround, I did:

  1. Delete node_modules and package-lock.json.
  2. npm install --legacy-peer-deps
  3. npm install --verbose
  4. Open the debug log of the most recent npm install. (It'll say in the output, but if you don't find it, it'll be located in someplace like: D:\Users\USERPROFILE\AppData\Local\npm-cache_logs\TIMESTAMP-debug-0.log)
  5. Inside the debug log, search for the phrase, silly ADD. It should be written several times, next to every package newly installed (which, because it was only installed the second time, was not installed during the npm install --legacy-peer-deps).

I hope that helps someone in the future.

EliezerB123 avatar Aug 14 '24 13:08 EliezerB123