Description
I think latest react-native is supporting yarn v3.6.4.
As you can see bottom links.
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.
Description
I think latest react-native is supporting yarn v3.6.4.
As you can see bottom links.
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 projectssuch 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.