@codemap-ai/cli 0.1.5 → 0.1.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -8997,7 +8997,8 @@ async function is9RouterRunning() {
8997
8997
  signal: AbortSignal.timeout(2e3)
8998
8998
  });
8999
8999
  return true;
9000
- } catch {
9000
+ } catch (err) {
9001
+ console.log(` [debug] 9router not reachable at http://localhost:${NINE_ROUTER_LOCAL_PORT}: ${err instanceof Error ? err.message : String(err)}`);
9001
9002
  return false;
9002
9003
  }
9003
9004
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemap-ai/cli",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "type": "module",
5
5
  "description": "CodeMap — AI-powered code intelligence and coding agent CLI",
6
6
  "license": "MIT",