@akonwi/kit 0.19.1 → 0.19.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/dist/kit CHANGED
Binary file
@@ -37,7 +37,7 @@ project/.kit/plugins/
37
37
  project-plugin.ts
38
38
  ```
39
39
 
40
- Kit automatically installs dependencies for each plugin directory before bundling. It uses `bun install` when the `bun` CLI is available and falls back to `npm install` otherwise.
40
+ Kit automatically installs dependencies for each plugin directory before bundling. It installs with its own embedded Bun runtime (the kit executable re-invoked as the `bun` CLI via `BUN_BE_BUN=1`), so no separate bun or npm installation is required including for compiled-binary installs such as Homebrew. If the embedded install fails, kit falls back to `bun install` and then `npm install` from PATH.
41
41
 
42
42
  Kit bundles each plugin from its absolute file path before loading it, so package imports resolve from the plugin file's directory and then walk up through normal Bun/Node module resolution. This lets user and project plugins depend on packages that Kit itself does not ship.
43
43
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akonwi/kit",
3
- "version": "0.19.1",
3
+ "version": "0.19.2",
4
4
  "author": "Akonwi Ngoh <akonwi@gmail.com>",
5
5
  "description": "A TUI coding agent",
6
6
  "license": "MIT",