@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
package/dist/index.js
CHANGED
|
@@ -24285,6 +24285,7 @@ var resolveDevClientDir2 = () => {
|
|
|
24285
24285
|
const built = {
|
|
24286
24286
|
client: clientPath,
|
|
24287
24287
|
hasAwaitSlot: loweredAwaitServerSource.transformed || loweredAwaitClientSource.transformed || loweredServerSource.transformed || loweredClientSource.transformed || hasAwaitSlotFromChildren,
|
|
24288
|
+
isModule,
|
|
24288
24289
|
ssr: ssrPath
|
|
24289
24290
|
};
|
|
24290
24291
|
cache.set(src, built);
|
|
@@ -24292,7 +24293,8 @@ var resolveDevClientDir2 = () => {
|
|
|
24292
24293
|
return built;
|
|
24293
24294
|
};
|
|
24294
24295
|
const roots = await Promise.all(entryPoints.map(build2));
|
|
24295
|
-
|
|
24296
|
+
const componentRoots = roots.filter((root) => !root.isModule);
|
|
24297
|
+
await Promise.all(componentRoots.map(async ({ client: client2, hasAwaitSlot }) => {
|
|
24296
24298
|
const relClientDir = dirname16(relative11(clientDir, client2));
|
|
24297
24299
|
const name = basename10(client2, extname6(client2));
|
|
24298
24300
|
const indexPath = join32(indexDir, relClientDir, `${name}.js`);
|
|
@@ -24380,7 +24382,7 @@ if (typeof window !== "undefined") {
|
|
|
24380
24382
|
}));
|
|
24381
24383
|
return {
|
|
24382
24384
|
svelteClientPaths: roots.map(({ client: client2 }) => client2),
|
|
24383
|
-
svelteIndexPaths:
|
|
24385
|
+
svelteIndexPaths: componentRoots.map(({ client: client2 }) => {
|
|
24384
24386
|
const rel = dirname16(relative11(clientDir, client2));
|
|
24385
24387
|
return join32(indexDir, rel, basename10(client2));
|
|
24386
24388
|
}),
|
|
@@ -48291,5 +48293,5 @@ export {
|
|
|
48291
48293
|
ANGULAR_INIT_TIMEOUT_MS
|
|
48292
48294
|
};
|
|
48293
48295
|
|
|
48294
|
-
//# debugId=
|
|
48296
|
+
//# debugId=F58B9944578FD0D464756E2164756E21
|
|
48295
48297
|
//# sourceMappingURL=index.js.map
|