create-kofi-stack 2.1.52 → 2.1.53

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 +2 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -89,6 +89,7 @@ async function runPrompts(projectNameArg, options) {
89
89
  const marketingOptions = [
90
90
  { value: "none", label: "None", hint: "Skip marketing site" },
91
91
  { value: "nextjs", label: "Next.js", hint: "Simple marketing pages" },
92
+ { value: "astro", label: "Astro", hint: "Fast static marketing site" },
92
93
  { value: "payload", label: "Payload CMS", hint: "Full CMS for content" }
93
94
  ];
94
95
  marketingSite = await p.select({
@@ -374,7 +375,7 @@ async function runPrompts(projectNameArg, options) {
374
375
  }
375
376
  function validateMarketingSite(value) {
376
377
  if (!value) return void 0;
377
- if (["none", "nextjs", "payload"].includes(value)) {
378
+ if (["none", "nextjs", "payload", "astro"].includes(value)) {
378
379
  return value;
379
380
  }
380
381
  return void 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-kofi-stack",
3
- "version": "2.1.52",
3
+ "version": "2.1.53",
4
4
  "description": "Scaffold opinionated full-stack projects with Next.js, Convex, Better-Auth, and more",
5
5
  "type": "module",
6
6
  "bin": {
@@ -16,8 +16,8 @@
16
16
  "typecheck": "tsc --noEmit"
17
17
  },
18
18
  "dependencies": {
19
- "kofi-stack-template-generator": "^2.1.52",
20
- "kofi-stack-types": "^2.1.52",
19
+ "kofi-stack-template-generator": "^2.1.53",
20
+ "kofi-stack-types": "^2.1.53",
21
21
  "@clack/prompts": "^0.7.0",
22
22
  "commander": "^12.0.0",
23
23
  "execa": "^8.0.0",