Yarn creates duplicate dependency resolution with @tonic-ui/react
and @tonic-ui/react-lab
when using exact versions
#642
Labels
❌ wontfix
This will not be worked on
From this commit, you can find that
@tonic-ui/[email protected]
depends on@tonic-ui/react@^1.7.2
https://github.com/trendmicro-frontend/tonic-ui/blob/b76bdc88fb74a9d2f76f701fd830c0910f1473bc/packages/react-lab/package.json
However, it may cause unexpected results when using exact versions with Yarn.
Use exact
version
to match dependenciespackage.json
yarn install
will produce the following results with exact versionsUse
^version
to match dependenciespackage.json
yarn install
will produce the following results:The text was updated successfully, but these errors were encountered: