create-kumiko-app 0.4.102 → 0.4.104

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/package.json +3 -3
  2. package/src/index.ts +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-kumiko-app",
3
- "version": "0.4.102",
3
+ "version": "0.4.104",
4
4
  "description": "`bun create kumiko-app <name>` — scaffold a new Kumiko app with an interactive feature picker.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -30,8 +30,8 @@
30
30
  "vendor:manifest": "bun run scripts/vendor-manifest.ts"
31
31
  },
32
32
  "dependencies": {
33
- "@cosmicdrift/kumiko-dev-server": "0.144.0",
34
- "@cosmicdrift/kumiko-framework": "0.144.0",
33
+ "@cosmicdrift/kumiko-dev-server": "0.145.1",
34
+ "@cosmicdrift/kumiko-framework": "0.145.1",
35
35
  "@inquirer/core": "^10.0.0",
36
36
  "@inquirer/prompts": "^7.4.0"
37
37
  },
package/src/index.ts CHANGED
@@ -39,7 +39,7 @@ export async function runCreate(args: CliArgs): Promise<number> {
39
39
 
40
40
  const selected = args.yes ? defaultSelection(manifest) : await runPicker(manifest);
41
41
  if (selected.length === 0) {
42
- log("Keine Features gewähltAbbruch.");
42
+ log("No features selectedaborting.");
43
43
  return 1;
44
44
  }
45
45
 
@@ -71,12 +71,12 @@ export async function runCreate(args: CliArgs): Promise<number> {
71
71
  log("");
72
72
  log(`✓ ${result.appName} scaffolded → ${result.destination}`);
73
73
  log("");
74
- log("Nächste Schritte:");
74
+ log("Next steps:");
75
75
  log(` cd ${args.name}`);
76
76
  log(" bun install");
77
- log(" cp .env.example .env # JWT_SECRET + KUMIKO_SECRETS_MASTER_KEY_V1 setzen");
78
- log(" docker compose up -d # wenn noch kein PG + Redis läuft");
79
- log(" bun dev # Demo-Tasks sind vorseeded — URL + Login im Banner");
77
+ log(" cp .env.example .env # set JWT_SECRET + KUMIKO_SECRETS_MASTER_KEY_V1");
78
+ log(" docker compose up -d # if you don't have Postgres + Redis running yet");
79
+ log(" bun dev # demo tasks are pre-seeded — URL + login in the banner");
80
80
  return 0;
81
81
  }
82
82