@absolutejs/absolute 0.19.0-beta.1120 → 0.19.0-beta.1121
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-6Y5Jj2/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-6Y5Jj2/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-6Y5Jj2/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
|
@@ -28429,10 +28429,8 @@ var toSafeFileName6 = (specifier) => {
|
|
|
28429
28429
|
setup(bld) {
|
|
28430
28430
|
bld.onLoad({ filter: /\.(?:m?js|cjs)$/ }, async (args) => {
|
|
28431
28431
|
const source = await Bun.file(args.path).text();
|
|
28432
|
-
if (!source.includes("@__PURE__"))
|
|
28433
|
-
return;
|
|
28434
28432
|
return {
|
|
28435
|
-
contents: source.replace(PURE_ANNOTATION, ""),
|
|
28433
|
+
contents: source.includes("@__PURE__") ? source.replace(PURE_ANNOTATION, "") : source,
|
|
28436
28434
|
loader: args.path.endsWith(".cjs") ? "js" : "js"
|
|
28437
28435
|
};
|
|
28438
28436
|
});
|
|
@@ -29073,5 +29071,5 @@ export {
|
|
|
29073
29071
|
build
|
|
29074
29072
|
};
|
|
29075
29073
|
|
|
29076
|
-
//# debugId=
|
|
29074
|
+
//# debugId=8936E97B4D16F91964756E2164756E21
|
|
29077
29075
|
//# sourceMappingURL=build.js.map
|