@absolutejs/absolute 0.19.0-beta.1122 → 0.19.0-beta.1123
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-DIfC1R/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-DIfC1R/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-DIfC1R/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/cli/index.js
CHANGED
|
@@ -178407,7 +178407,7 @@ ${mappings.join(`
|
|
|
178407
178407
|
};
|
|
178408
178408
|
|
|
178409
178409
|
// \u2500\u2500 Embedded build files \u2192 source paths \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500
|
|
178410
|
-
const EMBEDDED_FILES: Array<[string, string]> = [
|
|
178410
|
+
const EMBEDDED_FILES: Array<[string, string | Blob]> = [
|
|
178411
178411
|
${embeddedMappings.join(`
|
|
178412
178412
|
`)}
|
|
178413
178413
|
];
|
|
@@ -178508,7 +178508,10 @@ const materializeRuntimeFiles = async () => {
|
|
|
178508
178508
|
EMBEDDED_FILES.map(async ([rel, source]) => {
|
|
178509
178509
|
const target = join(runtimeDir, rel);
|
|
178510
178510
|
await mkdir(dirname(target), { recursive: true });
|
|
178511
|
-
await Bun.write(
|
|
178511
|
+
await Bun.write(
|
|
178512
|
+
target,
|
|
178513
|
+
typeof source === "string" ? Bun.file(source) : source
|
|
178514
|
+
);
|
|
178512
178515
|
})
|
|
178513
178516
|
);
|
|
178514
178517
|
writeFileSync(
|