@sma1lboy/kobe 0.5.5 → 0.5.6

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/cli/index.js CHANGED
@@ -8871,7 +8871,7 @@ var init_package = __esm(() => {
8871
8871
  package_default = {
8872
8872
  $schema: "https://json.schemastore.org/package.json",
8873
8873
  name: "@sma1lboy/kobe",
8874
- version: "0.5.5",
8874
+ version: "0.5.6",
8875
8875
  description: "TUI orchestrator for Claude Code (codename)",
8876
8876
  type: "module",
8877
8877
  packageManager: "bun@1.3.13",
@@ -10144,10 +10144,10 @@ function resolveKobedEntry() {
10144
10144
  const sourceEntry = resolve2(dir, "../bin/kobed.ts");
10145
10145
  if (existsSync4(sourceEntry))
10146
10146
  return { entry: sourceEntry, runWithBun: true };
10147
- const distEntry = join8(dirname4(process.argv[1] ?? here), "bin", "kobed.js");
10147
+ const distEntry = resolve2(dir, "../bin/kobed.js");
10148
10148
  if (existsSync4(distEntry))
10149
10149
  return { entry: distEntry, runWithBun: true };
10150
- return { entry: join8(process.cwd(), "dist", "bin", "kobed.js"), runWithBun: true };
10150
+ throw new Error(`kobe: could not locate kobed entry near ${dir}; expected ../bin/kobed.{ts,js}`);
10151
10151
  }
10152
10152
  var init_daemon_process = __esm(() => {
10153
10153
  init_paths2();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@sma1lboy/kobe",
4
- "version": "0.5.5",
4
+ "version": "0.5.6",
5
5
  "description": "TUI orchestrator for Claude Code (codename)",
6
6
  "type": "module",
7
7
  "packageManager": "bun@1.3.13",