@absolutejs/absolute 0.20.0-beta.40 → 0.20.0-beta.42
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/README.md +3 -0
- package/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/build.js +5 -1
- package/dist/build.js.map +3 -3
- package/dist/cli/index.js +7924 -7325
- package/dist/dev/client/hmrTiming.ts +4 -0
- package/dist/index.js +26 -4
- package/dist/index.js.map +4 -4
- package/dist/mobile/index.js +476 -35
- package/dist/mobile/index.js.map +6 -5
- package/dist/src/mobile/devDeviceAdapter.d.ts +1 -1
- package/dist/src/mobile/expoDevController.d.ts +52 -0
- package/dist/src/mobile/index.d.ts +1 -0
- package/dist/types/messages.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -286,6 +286,9 @@ An experimental Expo Router hybrid is also available behind
|
|
|
286
286
|
unclaimed AbsoluteJS route remains an embedded, signed web route regardless of
|
|
287
287
|
framework. Capacitor is still the default and production-ready path. See the
|
|
288
288
|
[Expo hybrid experiment](docs/MOBILE_EXPO_EXPERIMENT.md).
|
|
289
|
+
For Expo development, `bun dev` now owns the Bun server, Metro development
|
|
290
|
+
client, configured emulator/simulator builds, categorized logs, and both native
|
|
291
|
+
Fast Refresh and framework-aware AbsoluteJS HMR from the application root.
|
|
289
292
|
|
|
290
293
|
`keyboard` provides portable visibility, CSS-pixel height, dismissal, and
|
|
291
294
|
cleanup-safe change events. `systemBars` controls modern edge-to-edge status and
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-vdpOlu/src/core/streamingSlotRegistrar.ts
|
|
5
5
|
var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
|
|
6
6
|
var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
|
|
7
7
|
var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-vdpOlu/src/core/streamingSlotRegistrar.ts
|
|
5
5
|
var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
|
|
6
6
|
var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
|
|
7
7
|
var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
|
|
@@ -48,7 +48,7 @@ var warnMissingStreamingSlotCollector = (primitiveName) => {
|
|
|
48
48
|
getWarningController()?.maybeWarn(primitiveName);
|
|
49
49
|
};
|
|
50
50
|
|
|
51
|
-
// .angular-partial-tmp-
|
|
51
|
+
// .angular-partial-tmp-vdpOlu/src/core/streamingSlotRegistry.ts
|
|
52
52
|
var STREAMING_SLOT_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotAsyncLocalStorage");
|
|
53
53
|
var isObjectRecord2 = (value) => Boolean(value) && typeof value === "object";
|
|
54
54
|
var isAsyncLocalStorage = (value) => isObjectRecord2(value) && ("getStore" in value) && typeof value.getStore === "function" && ("run" in value) && typeof value.run === "function";
|
package/dist/build.js
CHANGED
|
@@ -25369,6 +25369,10 @@ var MAX_RETAINED_HMR_UPDATES = 100, normalizedHmrTarget = (value) => {
|
|
|
25369
25369
|
return value;
|
|
25370
25370
|
if (value === "capacitor-native")
|
|
25371
25371
|
return value;
|
|
25372
|
+
if (value === "expo-android")
|
|
25373
|
+
return value;
|
|
25374
|
+
if (value === "expo-ios")
|
|
25375
|
+
return value;
|
|
25372
25376
|
if (value === "mobile-preview")
|
|
25373
25377
|
return value;
|
|
25374
25378
|
return "web";
|
|
@@ -30382,5 +30386,5 @@ export {
|
|
|
30382
30386
|
build
|
|
30383
30387
|
};
|
|
30384
30388
|
|
|
30385
|
-
//# debugId=
|
|
30389
|
+
//# debugId=486007BE9F27199064756E2164756E21
|
|
30386
30390
|
//# sourceMappingURL=build.js.map
|