@absolutejs/absolute 0.19.0-beta.219 → 0.19.0-beta.220
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/.absolutejs/vue-tsc.tsbuildinfo +1 -1
- package/dist/build.js +20 -2
- package/dist/build.js.map +3 -3
- package/dist/index.js +20 -2
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -172428,10 +172428,15 @@ ${content.slice(firstUseIdx)}`;
|
|
|
172428
172428
|
updateConventionCompiledPaths(conventionsMap2.svelte, svelteConventionSources, svelteConvResult.svelteServerPaths);
|
|
172429
172429
|
updateConventionCompiledPaths(conventionsMap2.vue, vueConventionSources, vueConvResult.vueServerPaths);
|
|
172430
172430
|
}
|
|
172431
|
+
const conventionServerPaths = [
|
|
172432
|
+
...collectConventionSourceFiles(conventionsMap2.svelte),
|
|
172433
|
+
...collectConventionSourceFiles(conventionsMap2.vue)
|
|
172434
|
+
];
|
|
172431
172435
|
const serverEntryPoints = [
|
|
172432
172436
|
...svelteServerPaths,
|
|
172433
172437
|
...vueServerPaths,
|
|
172434
|
-
...angularServerPaths
|
|
172438
|
+
...angularServerPaths,
|
|
172439
|
+
...conventionServerPaths
|
|
172435
172440
|
];
|
|
172436
172441
|
const reactClientEntryPoints = [...reactEntries];
|
|
172437
172442
|
const allFrameworkDirs = [
|
|
@@ -172681,12 +172686,25 @@ ${content.slice(firstUseIdx)}`;
|
|
|
172681
172686
|
...cssOutputs
|
|
172682
172687
|
], buildPath)
|
|
172683
172688
|
};
|
|
172689
|
+
const conventionCompiledToBundled = new Map;
|
|
172684
172690
|
for (const artifact of serverOutputs) {
|
|
172685
172691
|
const fileWithHash = basename7(artifact.path);
|
|
172686
172692
|
const [baseName] = fileWithHash.split(`.${artifact.hash}.`);
|
|
172687
172693
|
if (!baseName)
|
|
172688
172694
|
continue;
|
|
172689
172695
|
manifest[toPascal(baseName)] = artifact.path;
|
|
172696
|
+
for (const compiledPath of conventionServerPaths) {
|
|
172697
|
+
const compiledBase = basename7(compiledPath).replace(/\.[^.]+$/, "");
|
|
172698
|
+
if (compiledBase === baseName) {
|
|
172699
|
+
conventionCompiledToBundled.set(compiledPath, artifact.path);
|
|
172700
|
+
}
|
|
172701
|
+
}
|
|
172702
|
+
}
|
|
172703
|
+
if (conventionCompiledToBundled.size > 0) {
|
|
172704
|
+
const compiledPaths = [...conventionCompiledToBundled.keys()];
|
|
172705
|
+
const bundledPaths = compiledPaths.map((p) => conventionCompiledToBundled.get(p) ?? p);
|
|
172706
|
+
updateConventionCompiledPaths(conventionsMap2.svelte, compiledPaths, bundledPaths);
|
|
172707
|
+
updateConventionCompiledPaths(conventionsMap2.vue, compiledPaths, bundledPaths);
|
|
172690
172708
|
}
|
|
172691
172709
|
const htmlOrHtmlCssChanged = !isIncremental || normalizedIncrementalFiles?.some((f) => f.includes("/html/") && (f.endsWith(".html") || f.endsWith(".css")));
|
|
172692
172710
|
const htmxOrHtmxCssChanged = !isIncremental || normalizedIncrementalFiles?.some((f) => f.includes("/htmx/") && (f.endsWith(".html") || f.endsWith(".css")));
|
|
@@ -178315,5 +178333,5 @@ export {
|
|
|
178315
178333
|
ANGULAR_INIT_TIMEOUT_MS
|
|
178316
178334
|
};
|
|
178317
178335
|
|
|
178318
|
-
//# debugId=
|
|
178336
|
+
//# debugId=3DFB75083D3FC5BF64756E2164756E21
|
|
178319
178337
|
//# sourceMappingURL=index.js.map
|