@absolutejs/absolute 0.19.0-beta.817 → 0.19.0-beta.818
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/index.js
CHANGED
|
@@ -13960,6 +13960,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
13960
13960
|
"@angular/*",
|
|
13961
13961
|
"typescript"
|
|
13962
13962
|
];
|
|
13963
|
+
const svelteResolveConditions = svelteDir ? ["svelte", "main"] : undefined;
|
|
13963
13964
|
const htmlScriptPlugin = hmr ? createHTMLScriptHMRPlugin(htmlDir, htmxDir) : undefined;
|
|
13964
13965
|
const reactBuildConfig = reactClientEntryPoints.length > 0 ? mergeBunBuildConfig({
|
|
13965
13966
|
entrypoints: reactClientEntryPoints,
|
|
@@ -14005,6 +14006,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
14005
14006
|
vueCssResult
|
|
14006
14007
|
] = await Promise.all([
|
|
14007
14008
|
serverEntryPoints.length > 0 ? tracePhase("bun/server", () => bunBuild6(mergeBunBuildConfig({
|
|
14009
|
+
conditions: svelteResolveConditions,
|
|
14008
14010
|
entrypoints: serverEntryPoints,
|
|
14009
14011
|
external: serverBuildExternals,
|
|
14010
14012
|
format: "esm",
|
|
@@ -14018,6 +14020,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
14018
14020
|
}, resolveBunBuildOverride(bunBuildConfig, "server")))) : undefined,
|
|
14019
14021
|
reactBuildConfig ? tracePhase("bun/react-client", () => bunBuild6(reactBuildConfig)) : undefined,
|
|
14020
14022
|
nonReactClientEntryPoints.length > 0 ? tracePhase("bun/non-react-client", () => bunBuild6(mergeBunBuildConfig({
|
|
14023
|
+
conditions: svelteResolveConditions,
|
|
14021
14024
|
define: vueDirectory ? vueFeatureFlags : undefined,
|
|
14022
14025
|
entrypoints: nonReactClientEntryPoints,
|
|
14023
14026
|
external: Object.keys(nonReactExternalPaths),
|
|
@@ -14037,6 +14040,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
14037
14040
|
tsconfig: "./tsconfig.json"
|
|
14038
14041
|
}, resolveBunBuildOverride(bunBuildConfig, "nonReactClient")))) : undefined,
|
|
14039
14042
|
islandClientEntryPoints.length > 0 ? tracePhase("bun/island-client", () => bunBuild6(mergeBunBuildConfig({
|
|
14043
|
+
conditions: svelteResolveConditions,
|
|
14040
14044
|
define: vueDirectory ? vueFeatureFlags : undefined,
|
|
14041
14045
|
entrypoints: islandClientEntryPoints,
|
|
14042
14046
|
external: Object.keys(nonReactExternalPaths),
|
|
@@ -26803,5 +26807,5 @@ export {
|
|
|
26803
26807
|
ANGULAR_INIT_TIMEOUT_MS
|
|
26804
26808
|
};
|
|
26805
26809
|
|
|
26806
|
-
//# debugId=
|
|
26810
|
+
//# debugId=CD6029459CC73A6C64756E2164756E21
|
|
26807
26811
|
//# sourceMappingURL=index.js.map
|