@absolutejs/absolute 0.19.0-beta.1101 → 0.19.0-beta.1102
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 +5 -3
- package/dist/build.js.map +3 -3
- package/dist/index.js +5 -3
- package/dist/index.js.map +3 -3
- package/dist/src/build/compileSvelte.d.ts +3 -0
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
var __require = import.meta.require;
|
|
3
3
|
|
|
4
|
-
// .angular-partial-tmp-
|
|
4
|
+
// .angular-partial-tmp-grVnSR/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-grVnSR/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-grVnSR/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
|
@@ -14191,6 +14191,7 @@ var resolveDevClientDir2 = () => {
|
|
|
14191
14191
|
const built = {
|
|
14192
14192
|
client: clientPath,
|
|
14193
14193
|
hasAwaitSlot: loweredAwaitServerSource.transformed || loweredAwaitClientSource.transformed || loweredServerSource.transformed || loweredClientSource.transformed || hasAwaitSlotFromChildren,
|
|
14194
|
+
isModule,
|
|
14194
14195
|
ssr: ssrPath
|
|
14195
14196
|
};
|
|
14196
14197
|
cache.set(src, built);
|
|
@@ -14198,7 +14199,8 @@ var resolveDevClientDir2 = () => {
|
|
|
14198
14199
|
return built;
|
|
14199
14200
|
};
|
|
14200
14201
|
const roots = await Promise.all(entryPoints.map(build));
|
|
14201
|
-
|
|
14202
|
+
const componentRoots = roots.filter((root) => !root.isModule);
|
|
14203
|
+
await Promise.all(componentRoots.map(async ({ client, hasAwaitSlot }) => {
|
|
14202
14204
|
const relClientDir = dirname14(relative11(clientDir, client));
|
|
14203
14205
|
const name = basename10(client, extname6(client));
|
|
14204
14206
|
const indexPath = join28(indexDir, relClientDir, `${name}.js`);
|
|
@@ -14286,7 +14288,7 @@ if (typeof window !== "undefined") {
|
|
|
14286
14288
|
}));
|
|
14287
14289
|
return {
|
|
14288
14290
|
svelteClientPaths: roots.map(({ client }) => client),
|
|
14289
|
-
svelteIndexPaths:
|
|
14291
|
+
svelteIndexPaths: componentRoots.map(({ client }) => {
|
|
14290
14292
|
const rel = dirname14(relative11(clientDir, client));
|
|
14291
14293
|
return join28(indexDir, rel, basename10(client));
|
|
14292
14294
|
}),
|
|
@@ -29506,5 +29508,5 @@ export {
|
|
|
29506
29508
|
build
|
|
29507
29509
|
};
|
|
29508
29510
|
|
|
29509
|
-
//# debugId=
|
|
29511
|
+
//# debugId=048B99A485D77DD464756E2164756E21
|
|
29510
29512
|
//# sourceMappingURL=build.js.map
|