@absolutejs/absolute 0.20.0-beta.2 → 0.20.0-beta.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/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/build.js +6 -1
- package/dist/build.js.map +4 -4
- package/dist/cli/index.js +2855 -946
- package/dist/index.js +15 -1
- package/dist/index.js.map +5 -5
- package/dist/mobile/index.js +1841 -171
- package/dist/mobile/index.js.map +8 -3
- package/dist/mobile/remoteMacAgentEntry.js +29 -0
- package/dist/src/core/prepare.d.ts +6 -0
- package/dist/src/dev/clientManager.d.ts +2 -0
- package/dist/src/mobile/index.d.ts +4 -0
- package/dist/src/mobile/iosConformance.d.ts +15 -0
- package/dist/src/mobile/iosNativeWatcher.d.ts +19 -0
- package/dist/src/mobile/iosRelease.d.ts +2 -2
- package/dist/src/mobile/iosSimulatorController.d.ts +89 -0
- package/dist/src/mobile/remoteMacAgent.d.ts +2 -0
- package/dist/src/mobile/remoteMacAgentEntry.d.ts +1 -0
- package/dist/src/mobile/remoteMacProtocol.d.ts +114 -0
- package/dist/src/mobile/remoteMacWire.d.ts +2 -0
- package/dist/src/plugins/hmr.d.ts +3 -0
- package/package.json +8 -7
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-tVpOd8/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-tVpOd8/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-tVpOd8/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
|
@@ -23174,6 +23174,7 @@ var init_configResolver = () => {};
|
|
|
23174
23174
|
var createHMRState = (config) => ({
|
|
23175
23175
|
activeFrameworks: new Set,
|
|
23176
23176
|
assetStore: new Map,
|
|
23177
|
+
clientTargets: new Map,
|
|
23177
23178
|
config,
|
|
23178
23179
|
connectedClients: new Set,
|
|
23179
23180
|
debounceTimeout: null,
|
|
@@ -24460,6 +24461,7 @@ var MAX_RETAINED_HMR_UPDATES = 100, normalizedHmrTarget = (value) => {
|
|
|
24460
24461
|
});
|
|
24461
24462
|
clientsToRemove.forEach((client) => {
|
|
24462
24463
|
state.connectedClients.delete(client);
|
|
24464
|
+
state.clientTargets.delete(client);
|
|
24463
24465
|
});
|
|
24464
24466
|
}, handleClientConnect = (state, client, manifest) => {
|
|
24465
24467
|
state.connectedClients.add(client);
|
|
@@ -24500,6 +24502,7 @@ var MAX_RETAINED_HMR_UPDATES = 100, normalizedHmrTarget = (value) => {
|
|
|
24500
24502
|
}
|
|
24501
24503
|
}, handleClientDisconnect = (state, client) => {
|
|
24502
24504
|
state.connectedClients.delete(client);
|
|
24505
|
+
state.clientTargets.delete(client);
|
|
24503
24506
|
}, parseJsonSafe = (raw) => JSON.parse(raw), parseMessage = (message) => {
|
|
24504
24507
|
if (typeof message === "string") {
|
|
24505
24508
|
return parseJsonSafe(message);
|
|
@@ -24529,11 +24532,13 @@ var MAX_RETAINED_HMR_UPDATES = 100, normalizedHmrTarget = (value) => {
|
|
|
24529
24532
|
case "request-rebuild":
|
|
24530
24533
|
break;
|
|
24531
24534
|
case "ready":
|
|
24535
|
+
state.clientTargets.set(client, normalizedHmrTarget(data.target));
|
|
24532
24536
|
if (data.framework) {
|
|
24533
24537
|
state.activeFrameworks.add(data.framework);
|
|
24534
24538
|
}
|
|
24535
24539
|
break;
|
|
24536
24540
|
case "hmr-timing": {
|
|
24541
|
+
state.clientTargets.set(client, normalizedHmrTarget(data.target));
|
|
24537
24542
|
const update = typeof data.updateId === "number" ? state.hmrUpdates.get(data.updateId) : undefined;
|
|
24538
24543
|
logHmrClientUpdate(update?.path ?? state.lastHmrPath ?? "", update?.framework ?? state.lastHmrFramework, data.duration, normalizedHmrTarget(data.target), data.serverMs, data.clientMs, data.outcome, data.kind);
|
|
24539
24544
|
sendTelemetryEvent("hmr:client-applied", {
|
|
@@ -29398,5 +29403,5 @@ export {
|
|
|
29398
29403
|
build
|
|
29399
29404
|
};
|
|
29400
29405
|
|
|
29401
|
-
//# debugId=
|
|
29406
|
+
//# debugId=B6F1017E0C4AB8CC64756E2164756E21
|
|
29402
29407
|
//# sourceMappingURL=build.js.map
|