episoda 0.2.34 → 0.2.35

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.
@@ -2699,7 +2699,7 @@ var require_package = __commonJS({
2699
2699
  "package.json"(exports2, module2) {
2700
2700
  module2.exports = {
2701
2701
  name: "episoda",
2702
- version: "0.2.33",
2702
+ version: "0.2.34",
2703
2703
  description: "CLI tool for Episoda local development workflow orchestration",
2704
2704
  main: "dist/index.js",
2705
2705
  types: "dist/index.d.ts",
@@ -7439,6 +7439,7 @@ var Daemon = class _Daemon {
7439
7439
  console.log(`[Daemon] EP956: No worktree for ${moduleUid} at ${worktree.path}, skipping tunnel`);
7440
7440
  return;
7441
7441
  }
7442
+ await this.updateModuleWorktreeStatus(moduleUid, "ready", worktree.path);
7442
7443
  const port = allocatePort(moduleUid);
7443
7444
  console.log(`[Daemon] EP956: Using worktree ${worktree.path} on port ${port}`);
7444
7445
  const devConfig = await (0, import_core10.loadConfig)();
@@ -7917,6 +7918,7 @@ var Daemon = class _Daemon {
7917
7918
  console.error(`[Daemon] EP995: Setup failed for reconciled ${moduleUid}:`, err);
7918
7919
  });
7919
7920
  } else {
7921
+ await this.updateModuleWorktreeStatus(moduleUid, "ready", worktree.path);
7920
7922
  const tunnelManager = getTunnelManager();
7921
7923
  await tunnelManager.initialize();
7922
7924
  if (!tunnelManager.hasTunnel(moduleUid)) {