create-kofi-stack 2.1.52 → 2.1.54

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 +3 -2
  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;
@@ -857,7 +858,7 @@ function displayBanner() {
857
858
  console.log();
858
859
  }
859
860
  var program = new Command();
860
- program.name("create-kofi-stack").description("Scaffold opinionated full-stack projects").version(VERSION).argument("[project-name]", "Name of your project").option("--standalone", "Create standalone project (default)").option("--monorepo", "Create monorepo with Turborepo").option("--marketing <type>", "Marketing site type: none, nextjs, payload").option("--analytics <type>", "Analytics: none, posthog, vercel").option("--uploads <type>", "Storage: convex-fs, r2, uploadthing, s3, vercel-blob, none").option("--payments <type>", "Payments: none, stripe, polar").option("--rate-limiting", "Add rate limiting with Convex Rate Limiter").option("--monitoring", "Add monitoring with Sentry").option("-y, --yes", "Skip prompts and use defaults").action(async (projectName, options) => {
861
+ program.name("create-kofi-stack").description("Scaffold opinionated full-stack projects").version(VERSION).argument("[project-name]", "Name of your project").option("--standalone", "Create standalone project (default)").option("--monorepo", "Create monorepo with Turborepo").option("--marketing <type>", "Marketing site type: none, nextjs, astro, payload").option("--analytics <type>", "Analytics: none, posthog, vercel").option("--uploads <type>", "Storage: convex-fs, r2, uploadthing, s3, vercel-blob, none").option("--payments <type>", "Payments: none, stripe, polar").option("--rate-limiting", "Add rate limiting with Convex Rate Limiter").option("--monitoring", "Add monitoring with Sentry").option("-y, --yes", "Skip prompts and use defaults").action(async (projectName, options) => {
861
862
  displayBanner();
862
863
  p3.intro(pc3.bgCyan(pc3.black(" create-kofi-stack ")));
863
864
  try {
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.54",
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.54",
20
+ "kofi-stack-types": "^2.1.54",
21
21
  "@clack/prompts": "^0.7.0",
22
22
  "commander": "^12.0.0",
23
23
  "execa": "^8.0.0",