Skip to content

Commit

Permalink
Add peer version support for RN 72
Browse files Browse the repository at this point in the history
The current package.json had a pinned peer dependency on RN 71.  This would cause
an error when running npm install on RN 72 projects.  The change ensures that we
at least install on the newer version of RN.
  • Loading branch information
takameyer committed Jul 7, 2023
1 parent aaa88a8 commit 085bd84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/realm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@
},
"peerDependencies": {
"bson": "^4",
"react-native": "^0.71.0"
"react-native": ">=0.71.0"
},
"peerDependenciesMeta": {
"react-native": {
Expand Down

0 comments on commit 085bd84

Please sign in to comment.