@absolutejs/absolute 0.19.0-beta.1110 → 0.19.0-beta.1111
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
|
@@ -31759,6 +31759,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
31759
31759
|
const sveltePagesPath = svelteDir && join40(svelteDir, "pages");
|
|
31760
31760
|
const vuePagesPath = vueDir && join40(vueDir, "pages");
|
|
31761
31761
|
const htmxPagesPath = htmxDir && join40(htmxDir, "pages");
|
|
31762
|
+
const htmxScriptsPath = htmxDir && join40(htmxDir, "scripts");
|
|
31762
31763
|
const angularPagesPath = angularDir && join40(angularDir, "pages");
|
|
31763
31764
|
const emberPagesPath = emberDir && join40(emberDir, "pages");
|
|
31764
31765
|
const frontends = [
|
|
@@ -31889,7 +31890,10 @@ ${content.slice(firstUseIdx)}`;
|
|
|
31889
31890
|
] = await Promise.all([
|
|
31890
31891
|
tailwindPromise,
|
|
31891
31892
|
reactIndexesPath ? tracePhase("scan/react-indexes", () => scanEntryPoints(reactIndexesPath, "*.tsx")) : [],
|
|
31892
|
-
|
|
31893
|
+
tracePhase("scan/html-htmx-scripts", async () => {
|
|
31894
|
+
const entries = await Promise.all([htmlScriptsPath, htmxScriptsPath].filter((path) => Boolean(path)).map((path) => scanEntryPoints(path, "*.{js,ts}")));
|
|
31895
|
+
return entries.flat();
|
|
31896
|
+
}),
|
|
31893
31897
|
reactPagesPath ? tracePhase("scan/react-conventions", () => scanConventions(reactPagesPath, "*.tsx")) : emptyConventionResult,
|
|
31894
31898
|
sveltePagesPath ? tracePhase("scan/svelte-conventions", () => scanConventions(sveltePagesPath, "*.svelte")) : emptyConventionResult,
|
|
31895
31899
|
vuePagesPath ? tracePhase("scan/vue-conventions", () => scanConventions(vuePagesPath, "*.vue")) : emptyConventionResult,
|
|
@@ -32009,7 +32013,7 @@ ${content.slice(firstUseIdx)}`;
|
|
|
32009
32013
|
}
|
|
32010
32014
|
return null;
|
|
32011
32015
|
}) : allReactEntries;
|
|
32012
|
-
const htmlEntries = isIncremental && htmlScriptsPath && !shouldIncludeHtmlAssets ? filterToIncrementalEntries(allHtmlEntries, (entry) => entry) : allHtmlEntries;
|
|
32016
|
+
const htmlEntries = isIncremental && (htmlScriptsPath || htmxScriptsPath) && !shouldIncludeHtmlAssets ? filterToIncrementalEntries(allHtmlEntries, (entry) => entry) : allHtmlEntries;
|
|
32013
32017
|
const svelteEntries = isIncremental ? filterToIncrementalEntries(allSvelteEntries, (entry) => entry) : allSvelteEntries;
|
|
32014
32018
|
const vueEntries = isIncremental ? filterToIncrementalEntries(allVueEntries, (entry) => entry) : allVueEntries;
|
|
32015
32019
|
const angularEntries = isIncremental ? filterToIncrementalEntries(allAngularEntries, (entry) => entry) : allAngularEntries;
|
|
@@ -48428,5 +48432,5 @@ export {
|
|
|
48428
48432
|
ANGULAR_INIT_TIMEOUT_MS
|
|
48429
48433
|
};
|
|
48430
48434
|
|
|
48431
|
-
//# debugId=
|
|
48435
|
+
//# debugId=F776CEEBE47E486764756E2164756E21
|
|
48432
48436
|
//# sourceMappingURL=index.js.map
|