File tree Expand file tree Collapse file tree 3 files changed +862
-150
lines changed
packages/runtime/src/render Expand file tree Collapse file tree 3 files changed +862
-150
lines changed Original file line number Diff line number Diff line change 88 "dependencies" : {
99 "react" : " 19.2.3" ,
1010 "react-dom" : " 19.2.3" ,
11- "react-native" : " 0.82.1 " ,
11+ "react-native" : " 0.86.0-nightly-20260409-b1d12f535 " ,
1212 "react-native-web" : " ^0.21.2"
1313 },
1414 "devDependencies" : {
1818 "@react-native-community/cli" : " 20.0.0" ,
1919 "@react-native-community/cli-platform-android" : " 20.0.0" ,
2020 "@react-native-community/cli-platform-ios" : " 20.0.0" ,
21- "@react-native/babel-preset" : " 0.82.1" ,
22- "@react-native/eslint-config" : " 0.82.1" ,
23- "@react-native/metro-config" : " 0.82.1" ,
24- "@react-native/typescript-config" : " 0.82.1" ,
21+ "@react-native/babel-preset" : " 0.86.0-nightly-20260409-b1d12f535" ,
22+ "@react-native/eslint-config" : " 0.86.0-nightly-20260409-b1d12f535" ,
23+ "@react-native/jest-preset" : " 0.86.0-nightly-20260409-b1d12f535" ,
24+ "@react-native/metro-config" : " 0.86.0-nightly-20260409-b1d12f535" ,
25+ "@react-native/typescript-config" : " 0.86.0-nightly-20260409-b1d12f535" ,
2526 "@react-native-harness/jest" : " workspace:*" ,
2627 "jest" : " ^30.2.0" ,
2728 "@react-native-harness/platform-android" : " workspace:*" ,
Original file line number Diff line number Diff line change @@ -52,15 +52,19 @@ export const TestComponentOverlay = (): React.ReactElement | null => {
5252 } ;
5353
5454 return (
55- < View key = { key } style = { styles . overlay } onLayout = { handleLayout } >
55+ < View
56+ key = { key }
57+ // Keep runtime buildable on RN 0.85+ so this branch stays focused on the Metro loading repro.
58+ style = { [ StyleSheet . absoluteFill , styles . overlay ] }
59+ onLayout = { handleLayout }
60+ >
5661 < ErrorBoundary > { element } </ ErrorBoundary >
5762 </ View >
5863 ) ;
5964} ;
6065
6166const styles = StyleSheet . create ( {
6267 overlay : {
63- ...StyleSheet . absoluteFillObject ,
6468 backgroundColor : '#0a1628' ,
6569 zIndex : 1000 ,
6670 } ,
You can’t perform that action at this time.
0 commit comments