@sideboard-ai/cli 0.1.229 → 0.1.231

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 +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -277,7 +277,7 @@ async function main() {
277
277
  });
278
278
  program.command("dev").description("Start/stop per-worktree run script").argument("<thread>", "thread id/ref").argument("[script]", "named run script (default script if omitted)").option("--stop", "stop the run script").action(async (thread, script, opts) => {
279
279
  if (opts.stop) {
280
- orch.stopDev(thread, script);
280
+ await orch.stopDev(thread, script);
281
281
  console.log(chalk.yellow(script ? `Stopped ${script}` : "Run scripts stopped"));
282
282
  return;
283
283
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sideboard-ai/cli",
3
- "version": "0.1.229",
3
+ "version": "0.1.231",
4
4
  "description": "Sideboard CLI — agent-agnostic worktree orchestration (includes `sideboard mcp`)",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",