You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use resolutions/overrides quite extensively, both for forcing single versions of transient dependencies across packages, but also to lock a specific dependency while i.e. waiting for a bug fix to land. If in the latter use-case you're dealing with a transient dependency, it can be hard to find out when a new version has landed and your override needs to be removed or updated since it won't be included in the output of pnpm outdated. This means custom scripts or having to individually look up overrides one by one.
Yarn v1 used to include resolutionDependencies in the output of yarn outdated so there's definitely a precedent for this. None of the package managers or standalone version checker tools appear to support this functionality today, however. Personally I found this extremely useful since overrides need to be handled with care so should also be visible (if desired) when reviewing dependencies.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I use resolutions/overrides quite extensively, both for forcing single versions of transient dependencies across packages, but also to lock a specific dependency while i.e. waiting for a bug fix to land. If in the latter use-case you're dealing with a transient dependency, it can be hard to find out when a new version has landed and your override needs to be removed or updated since it won't be included in the output of
pnpm outdated
. This means custom scripts or having to individually look up overrides one by one.Yarn v1 used to include
resolutionDependencies
in the output ofyarn outdated
so there's definitely a precedent for this. None of the package managers or standalone version checker tools appear to support this functionality today, however. Personally I found this extremely useful since overrides need to be handled with care so should also be visible (if desired) when reviewing dependencies.Beta Was this translation helpful? Give feedback.
All reactions