fix(deps): remove incorrectly duplicated peerDeps #511
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Motivation
these are all inside of prod
dependencies
already (it has to be either or)notably,
antd
had a version mismatch betweendependencies
andpeerDependencies
(and it was a major version difference, v5 vs v4 after build(deps): bump antd from 4.21.3 to 5.6.1 #387)dependencies
supersedepeerDependencies
however, so the v5 dep was already used and the v4 dep was extraneousyarn.lock
file as evidence, as well as a downstreamyarn.lock
, such as Argo Workflows'syarn.lock
file eitherargo-ui
's own depsNoticed this in argoproj/argo-workflows#12097 (comment)
Modifications
Remove duplicate deps from
peerDependencies
inpackage.json
Verification
No changes to
yarn.lock
,yarn install
, build etc all still work fine. CI passes