@scalebun/react-native 1.10.3 → 1.10.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/scalebun.full.js +11 -1
- package/dist/scalebun.full.js.map +1 -1
- package/dist/scalebun.slim.js +11 -1
- package/dist/scalebun.slim.js.map +1 -1
- package/lib/commonjs/bootstrap/SDKBootstrapper.js +14 -2
- package/lib/commonjs/bootstrap/SDKBootstrapper.js.map +1 -1
- package/lib/commonjs/core/constants/version.js +1 -1
- package/lib/module/bootstrap/SDKBootstrapper.js +13 -0
- package/lib/module/bootstrap/SDKBootstrapper.js.map +1 -1
- package/lib/module/core/constants/version.js +1 -1
- package/lib/typescript/bootstrap/SDKBootstrapper.d.ts.map +1 -1
- package/lib/typescript/core/constants/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/bootstrap/SDKBootstrapper.ts +15 -0
- package/src/core/constants/version.ts +1 -1
package/dist/scalebun.slim.js
CHANGED
|
@@ -492,7 +492,7 @@ var SDK_VERSION;
|
|
|
492
492
|
var init_version = __esm({
|
|
493
493
|
"lib/module/core/constants/version.js"() {
|
|
494
494
|
"use strict";
|
|
495
|
-
SDK_VERSION = "1.10.
|
|
495
|
+
SDK_VERSION = "1.10.4";
|
|
496
496
|
}
|
|
497
497
|
});
|
|
498
498
|
|
|
@@ -5690,6 +5690,14 @@ var init_NativeScaleBunCrash = __esm({
|
|
|
5690
5690
|
});
|
|
5691
5691
|
|
|
5692
5692
|
// lib/module/features/crash/nativeCrashBridge.js
|
|
5693
|
+
var nativeCrashBridge_exports = {};
|
|
5694
|
+
__export(nativeCrashBridge_exports, {
|
|
5695
|
+
drainNativeCrash: () => drainNativeCrash,
|
|
5696
|
+
installNativeCrashHandler: () => installNativeCrashHandler,
|
|
5697
|
+
persistFatalJsCrash: () => persistFatalJsCrash,
|
|
5698
|
+
setNativeActiveSession: () => setNativeActiveSession,
|
|
5699
|
+
triggerNativeCrash: () => triggerNativeCrash
|
|
5700
|
+
});
|
|
5693
5701
|
function getCrashModule() {
|
|
5694
5702
|
if (_crashModule) return _crashModule.mod;
|
|
5695
5703
|
try {
|
|
@@ -13724,6 +13732,8 @@ var SDKBootstrapper = class {
|
|
|
13724
13732
|
}
|
|
13725
13733
|
});
|
|
13726
13734
|
sessionManager.setBackendTransport(backendAdapter);
|
|
13735
|
+
Promise.resolve().then(() => (init_nativeCrashBridge(), nativeCrashBridge_exports)).then((m) => m.drainNativeCrash()).catch(() => {
|
|
13736
|
+
});
|
|
13727
13737
|
if (this.config.clientKey && this.config.captureConsoleLogs) {
|
|
13728
13738
|
installConsoleIntegration();
|
|
13729
13739
|
}
|