@absolutejs/absolute 0.1.15 → 0.1.16
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 +41 -41
- package/package.json +1 -1
- package/src/core/build.ts +2 -2
package/package.json
CHANGED
package/src/core/build.ts
CHANGED
|
@@ -113,12 +113,12 @@ export const build = async ({
|
|
|
113
113
|
|
|
114
114
|
if (htmlDirAbsolute) {
|
|
115
115
|
await mkdir(join(buildDirAbsolute, "html"));
|
|
116
|
-
await $`cp -R ${htmlDirAbsolute} ${join(buildDirAbsolute
|
|
116
|
+
await $`cp -R ${htmlDirAbsolute} ${join(buildDirAbsolute)}`;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
if (htmxDirAbsolute) {
|
|
120
120
|
await mkdir(join(buildDirAbsolute, "htmx"));
|
|
121
|
-
await $`cp -R ${htmxDirAbsolute} ${join(buildDirAbsolute
|
|
121
|
+
await $`cp -R ${htmxDirAbsolute} ${join(buildDirAbsolute)}`;
|
|
122
122
|
}
|
|
123
123
|
|
|
124
124
|
const manifest = outputs.reduce<Record<string, string>>((acc, artifact) => {
|