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
This project has "@types/react": "^16.9.56" depdendency.
But its dependency @types/react-transition-group has "@types/react" : "*" that resolves to latest version 18.
These two different versions of @types/react conflict and cause type errors.
What is the expected behavior?
overrides configuration should override nested/transitive dependencies' * versions.
Preferably any project dependency should override nested/transitive dependencies' * version (overrides config should be unnecessary). Maybe it only makes sense for types only dependencies.
What do you see instead?
Nested/transitive dependencies' * version overrides project dependencies' versions. Even overrides config doesn't work.
Additional information
No response
The text was updated successfully, but these errors were encountered:
dulguun0225
changed the title
Transitive/nested dependencies' asterisk (*) version doesn't respect projects specified version.
Transitive/nested dependencies' asterisk (*) version doesn't respect project's specified version or override config
Sep 12, 2023
What version of Bun is running?
1.0.0
What platform is your computer?
Linux 6.4.12-arch1-1 x86_64 unknown
How to reproduce
Run
bun install
inside this projectExplanation
"@types/react": "^16.9.56"
depdendency.@types/react-transition-group
has"@types/react" : "*"
that resolves to latest version 18.These two different versions of
@types/react
conflict and cause type errors.What is the expected behavior?
overrides
configuration should override nested/transitive dependencies' * versions.overrides
config should be unnecessary). Maybe it only makes sense for types only dependencies.What do you see instead?
Nested/transitive dependencies' * version overrides project dependencies' versions. Even
overrides
config doesn't work.Additional information
No response
The text was updated successfully, but these errors were encountered: