@absolutejs/absolute 0.19.0-beta.933 → 0.19.0-beta.935
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 +4 -1
- package/dist/build.js.map +3 -3
- package/dist/index.js +4 -1
- package/dist/index.js.map +3 -3
- package/dist/vue/index.js +4 -10
- package/dist/vue/index.js.map +3 -3
- package/dist/vue/server.js +4 -10
- package/dist/vue/server.js.map +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15461,6 +15461,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
15461
15461
|
...vueVendorPaths2 ?? {},
|
|
15462
15462
|
...svelteVendorPaths2 ?? {}
|
|
15463
15463
|
};
|
|
15464
|
+
const angularPartialDeclSpecs = Object.keys(angularVendorPaths2 ?? {}).filter((spec) => !spec.startsWith("@angular/")).flatMap((spec) => [spec, `${spec}/*`]);
|
|
15464
15465
|
const serverBuildExternals = [
|
|
15465
15466
|
"react",
|
|
15466
15467
|
"react/*",
|
|
@@ -15470,7 +15471,9 @@ ${content.slice(firstUseIdx)}`;
|
|
|
15470
15471
|
"svelte/*",
|
|
15471
15472
|
"vue",
|
|
15472
15473
|
"vue/*",
|
|
15474
|
+
"@vue/*",
|
|
15473
15475
|
"@angular/*",
|
|
15476
|
+
...angularPartialDeclSpecs,
|
|
15474
15477
|
"typescript"
|
|
15475
15478
|
];
|
|
15476
15479
|
const svelteResolveConditions = svelteDir ? ["svelte", "main"] : undefined;
|
|
@@ -32133,5 +32136,5 @@ export {
|
|
|
32133
32136
|
ANGULAR_INIT_TIMEOUT_MS
|
|
32134
32137
|
};
|
|
32135
32138
|
|
|
32136
|
-
//# debugId=
|
|
32139
|
+
//# debugId=D894B88CFA4F564B64756E2164756E21
|
|
32137
32140
|
//# sourceMappingURL=index.js.map
|