@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@absolutejs/absolute",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "A fullstack meta-framework for building web applications with TypeScript",
5
5
  "repository": {
6
6
  "type": "git",
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, "html")}`;
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, "htmx")}`;
121
+ await $`cp -R ${htmxDirAbsolute} ${join(buildDirAbsolute)}`;
122
122
  }
123
123
 
124
124
  const manifest = outputs.reduce<Record<string, string>>((acc, artifact) => {