We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5a0f32 commit 9504828Copy full SHA for 9504828
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "react-native-update",
3
- "version": "10.26.0",
+ "version": "10.26.1",
4
"description": "react-native hot update",
5
"main": "src/index",
6
"scripts": {
src/core.ts
@@ -4,7 +4,9 @@ const {
version: v,
} = require('react-native/Libraries/Core/ReactNativeVersion');
const RNVersion = `${v.major}.${v.minor}.${v.patch}`;
7
-const isTurboModuleEnabled = (global as any).__turboModuleProxy != null;
+const isTurboModuleEnabled =
8
+ // https://github.com/facebook/react-native/pull/48362
9
+ (global as any).__turboModuleProxy || (global as any).RN$Bridgeless;
10
11
export const PushyModule =
12
Platform.OS === 'web'
0 commit comments