@k-msg/cli 0.3.1 → 0.3.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @k-msg/cli
2
2
 
3
+ ## 0.3.2 — 2026-02-16
4
+
5
+ ### Patch changes
6
+
7
+ - [4faaeec](https://github.com/k-otp/k-msg/commit/4faaeec2b7e81c20a7695e9d84214cdaf92afa6b) Align the CLI bootstrap with Bunli type-generation by registering commands from
8
+ `apps/cli/.bunli/commands.gen.ts`, and run `bunli generate` before local `test`,
9
+ `dev`, and `build:js` scripts so command registration works reliably in fresh
10
+ environments and CI. — Thanks @imjlk!
11
+
3
12
  ## 0.3.1 — 2026-02-16
4
13
 
5
14
  ### Patch changes
package/README.md CHANGED
@@ -68,6 +68,9 @@ Optionally copy it as `kmsg.exe` as an alias.
68
68
  ## Run (local/dev)
69
69
 
70
70
  ```bash
71
+ # Generate command types
72
+ bun run --cwd apps/cli generate
73
+
71
74
  # Build native binary
72
75
  bun run --cwd apps/cli build
73
76
  ./apps/cli/dist/k-msg --help
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k-msg/cli",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "private": false,
5
5
  "description": "k-msg CLI (prebuilt binaries via GitHub Releases)",
6
6
  "type": "module",
@@ -20,12 +20,13 @@
20
20
  "CHANGELOG.md"
21
21
  ],
22
22
  "scripts": {
23
+ "generate": "bunli generate",
23
24
  "build": "bunli build",
24
25
  "build:all": "bunli build --targets all",
25
26
  "build:native": "bunli build --targets native",
26
- "build:js": "bun build src/k-msg.ts --outdir=dist --format=esm --target=bun",
27
- "dev": "bun --watch src/k-msg.ts",
28
- "test": "bun test",
27
+ "build:js": "bun run generate && bun build src/k-msg.ts --outdir=dist --format=esm --target=bun",
28
+ "dev": "bun run generate && bun --watch src/k-msg.ts",
29
+ "test": "bun run generate && bun test",
29
30
  "clean": "rm -rf dist"
30
31
  },
31
32
  "devDependencies": {