Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"react": "18.3.1",
"react-native": "0.77.0"
"react-native": "0.85.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 Incomplete react-native upgrade: @react-native/ companion packages left at 0.77.0*

The PR bumps react-native from 0.77.0 to 0.85.0, but the @react-native/babel-preset, @react-native/metro-config, and @react-native/typescript-config devDependencies at example/package.json:23-25 are all still pinned to 0.77.0. These packages are versioned in lockstep with react-native (they were all previously aligned at 0.77.0), so this version mismatch will likely cause build failures or runtime errors. Additionally, the @react-native-community/cli packages at example/package.json:20-22 were also matched to the 0.77.0 release and may need updating as well.

Prompt for agents
The react-native dependency was bumped from 0.77.0 to 0.85.0, but the companion @react-native/* packages in devDependencies (lines 23-25: @react-native/babel-preset, @react-native/metro-config, @react-native/typescript-config) are still at 0.77.0. These must be updated to match the react-native version (0.85.0 or whatever version aligns with RN 0.85). The @react-native-community/cli packages (lines 20-22) may also need updating. The react version (line 13, currently 18.3.1) should also be checked for compatibility with RN 0.85. Additionally, the root package.json still lists react-native 0.77.0 as a devDependency (line 82), which may also need updating for consistency.
Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

},
"devDependencies": {
"@babel/core": "^7.25.2",
Expand Down
Loading