create-absolutejs 0.1.9 → 0.1.10

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1698,7 +1698,7 @@ var createServerFile = ({
1698
1698
  const manifestOptions = [
1699
1699
  `buildDirectory: '${buildDirectory}'`,
1700
1700
  `assetsDirectory: '${assetsDirectory}'`,
1701
- ...frontendConfigurations.map((configuration) => configuration.directory ? `${configuration.name}Directory: './src/frontend/${configuration.directory}'` : "").filter((option) => option !== ""),
1701
+ ...frontendConfigurations.map((configuration) => configuration.directory ? `${configuration.name}Directory: './src/frontend/${configuration.directory}'` : `${configuration.name}Directory: './src/frontend/'`).filter((option) => option !== ""),
1702
1702
  tailwind ? `tailwind: ${JSON.stringify(tailwind)}` : ""
1703
1703
  ];
1704
1704
  const buildStatement = `const manifest = await build({
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-absolutejs",
3
3
  "description": "A CLI tool to create a new AbsoluteJS project",
4
- "version": "0.1.9",
4
+ "version": "0.1.10",
5
5
  "license": "CC BY-NC 4.0",
6
6
  "author": "Alex Kahn",
7
7
  "type": "module",