@absolutejs/absolute 0.11.0 → 0.11.1
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 +3 -3
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -235131,7 +235131,7 @@ var build = async ({
|
|
|
235131
235131
|
...htmlCssEntries,
|
|
235132
235132
|
...htmxCssEntries
|
|
235133
235133
|
];
|
|
235134
|
-
if (serverEntryPoints.length === 0 && clientEntryPoints.length === 0) {
|
|
235134
|
+
if (serverEntryPoints.length === 0 && clientEntryPoints.length === 0 && htmxDir === undefined) {
|
|
235135
235135
|
console.warn("No entry points found, manifest will be empty.");
|
|
235136
235136
|
return {};
|
|
235137
235137
|
}
|
|
@@ -235207,7 +235207,7 @@ var build = async ({
|
|
|
235207
235207
|
await updateAssetPaths(manifest, outputHtmlPages);
|
|
235208
235208
|
}
|
|
235209
235209
|
if (htmxDir && htmxPagesPath) {
|
|
235210
|
-
const outputHtmxPages = join8(buildPath, basename7(htmxDir), "pages");
|
|
235210
|
+
const outputHtmxPages = isSingle ? join8(buildPath, "pages") : join8(buildPath, basename7(htmxDir), "pages");
|
|
235211
235211
|
await mkdir4(outputHtmxPages, { recursive: true });
|
|
235212
235212
|
await cp(htmxPagesPath, outputHtmxPages, {
|
|
235213
235213
|
force: true,
|
|
@@ -283330,5 +283330,5 @@ export {
|
|
|
283330
283330
|
ANGULAR_BUILD_WARNING_SUPPRESSION
|
|
283331
283331
|
};
|
|
283332
283332
|
|
|
283333
|
-
//# debugId=
|
|
283333
|
+
//# debugId=927665B1B47632A064756E2164756E21
|
|
283334
283334
|
//# sourceMappingURL=index.js.map
|