-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48160 from software-mansion-labs/@wolewicki/enabl…
…e-bridgeless [NoQA] feat: enable bridgeless
- Loading branch information
Showing
14 changed files
with
538 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
patches/@react-native-firebase+app+12.9.3+002+bridgeless.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/node_modules/@react-native-firebase/app/lib/internal/registry/nativeModule.js b/node_modules/@react-native-firebase/app/lib/internal/registry/nativeModule.js | ||
index 03f001c..23d467d 100644 | ||
--- a/node_modules/@react-native-firebase/app/lib/internal/registry/nativeModule.js | ||
+++ b/node_modules/@react-native-firebase/app/lib/internal/registry/nativeModule.js | ||
@@ -65,7 +65,7 @@ function nativeModuleWrapped(namespace, NativeModule, argToPrepend) { | ||
return NativeModule; | ||
} | ||
|
||
- const properties = Object.keys(NativeModule); | ||
+ const properties = Object.keys(Object.getPrototypeOf(NativeModule)); | ||
|
||
for (let i = 0, len = properties.length; i < len; i++) { | ||
const property = properties[i]; |
Oops, something went wrong.