-
I had |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is to ensure that your package manager resolves the requested version, That said, the caret (^) allows you to bump patch version. |
Beta Was this translation helpful? Give feedback.
This is to ensure that your package manager resolves the requested version,
^0.70.0
, to the same version for your whole repository. If you had, for example, both^0.70.0
and^0.70.6
, you can end up with two different copies of react-native. You can find more information about the reasons in this document: https://microsoft.github.io/rnx-kit/docs/architecture/dependency-managementThat said, the caret (^) allows you to bump patch version.
^0.70.0
is the same as0.70.x
. If you want to upgrade to 0.70.6, you can use the upgrade command of your package manager (instructions for Yarn). If you prefer to do so manually, you can also try removing thereact-native
entry inyarn.lock
and re-run ins…