-
Notifications
You must be signed in to change notification settings - Fork 3k
Closed
Labels
Description
Description
I think latest react-native is supporting yarn v3.6.4.
As you can see bottom links.
- https://react-native-community.github.io/upgrade-helper/?from=0.73.6&to=0.76.0-rc.4
- https://react-native-community.github.io/upgrade-helper/?from=0.73.6&to=0.76.0-rc.4#RnDiffApp-package.json
Why it is needed ?
Get in sync with latest react native yarn version.
Possible implementation
It's possible but we have to create yarn.lock files in examples projects such as "examples/bare" after we set yarn version as 3.6.4 in the root project's package.json. But yarn.lock is gitignored.
Please have a look and test it.
#4249
$ cd examples/bare
$ yarn install (without yarn.lock is existing)
But if we have yarn.lock file inside of "examples/bare", yarn install is working.
$ cd examples/bare
$ touch yarn.lock
$ yarn install
I don't know how to solve it right now without yarn workspaces. Maybe need some ideas.
Code sample
No code sample needed for this issue.
KrzysztofMoch
