create-kumiko-app 0.4.199 → 0.4.201

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": "create-kumiko-app",
3
- "version": "0.4.199",
3
+ "version": "0.4.201",
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>",
@@ -27,9 +27,9 @@
27
27
  }
28
28
  },
29
29
  "dependencies": {
30
- "@cosmicdrift/kumiko-dev-server": "0.194.0",
31
- "@cosmicdrift/kumiko-framework": "0.194.0",
32
- "@cosmicdrift/kumiko-server-runtime": "0.194.0",
30
+ "@cosmicdrift/kumiko-dev-server": "0.196.0",
31
+ "@cosmicdrift/kumiko-framework": "0.196.0",
32
+ "@cosmicdrift/kumiko-server-runtime": "0.196.0",
33
33
  "@inquirer/core": "^10.0.0",
34
34
  "@inquirer/prompts": "^7.4.0"
35
35
  },
@@ -1,32 +0,0 @@
1
- // Vendored manifest.json must match the source-of-truth in
2
- // samples/apps/use-all-bundled/feature-manifest.json. The picker reads
3
- // the vendored copy at runtime; a stale copy lets the picker show old
4
- // features or miss new ones. Refresh by running `bun run gen:manifest`
5
- // inside samples/apps/use-all-bundled (writes both copies at once).
6
-
7
- import { describe, expect, test } from "bun:test";
8
- import { readFileSync } from "node:fs";
9
- import { dirname, resolve } from "node:path";
10
- import { fileURLToPath } from "node:url";
11
-
12
- const HERE = dirname(fileURLToPath(import.meta.url));
13
- const VENDOR = resolve(HERE, "..", "..", "feature-manifest.json");
14
- const SOURCE = resolve(
15
- HERE,
16
- "..",
17
- "..",
18
- "..",
19
- "..",
20
- "samples",
21
- "apps",
22
- "use-all-bundled",
23
- "feature-manifest.json",
24
- );
25
-
26
- describe("vendored manifest", () => {
27
- test("byte-identical to samples/apps/use-all-bundled/feature-manifest.json", () => {
28
- const vendor = readFileSync(VENDOR, "utf-8");
29
- const source = readFileSync(SOURCE, "utf-8");
30
- expect(vendor).toBe(source);
31
- });
32
- });