@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.full.js
CHANGED
|
@@ -489,7 +489,7 @@ var SDK_VERSION;
|
|
|
489
489
|
var init_version = __esm({
|
|
490
490
|
"lib/module/core/constants/version.js"() {
|
|
491
491
|
"use strict";
|
|
492
|
-
SDK_VERSION = "1.10.
|
|
492
|
+
SDK_VERSION = "1.10.4";
|
|
493
493
|
}
|
|
494
494
|
});
|
|
495
495
|
|
|
@@ -10400,6 +10400,14 @@ var init_NativeScaleBunCrash = __esm({
|
|
|
10400
10400
|
});
|
|
10401
10401
|
|
|
10402
10402
|
// lib/module/features/crash/nativeCrashBridge.js
|
|
10403
|
+
var nativeCrashBridge_exports = {};
|
|
10404
|
+
__export(nativeCrashBridge_exports, {
|
|
10405
|
+
drainNativeCrash: () => drainNativeCrash,
|
|
10406
|
+
installNativeCrashHandler: () => installNativeCrashHandler,
|
|
10407
|
+
persistFatalJsCrash: () => persistFatalJsCrash,
|
|
10408
|
+
setNativeActiveSession: () => setNativeActiveSession,
|
|
10409
|
+
triggerNativeCrash: () => triggerNativeCrash
|
|
10410
|
+
});
|
|
10403
10411
|
function getCrashModule() {
|
|
10404
10412
|
if (_crashModule) return _crashModule.mod;
|
|
10405
10413
|
try {
|
|
@@ -16926,6 +16934,8 @@ var SDKBootstrapper = class {
|
|
|
16926
16934
|
}
|
|
16927
16935
|
});
|
|
16928
16936
|
sessionManager.setBackendTransport(backendAdapter);
|
|
16937
|
+
Promise.resolve().then(() => (init_nativeCrashBridge(), nativeCrashBridge_exports)).then((m) => m.drainNativeCrash()).catch(() => {
|
|
16938
|
+
});
|
|
16929
16939
|
if (this.config.clientKey && this.config.captureConsoleLogs) {
|
|
16930
16940
|
installConsoleIntegration();
|
|
16931
16941
|
}
|