create-op-node 0.10.14 → 0.10.15

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.js CHANGED
@@ -646,7 +646,6 @@ async function discoverRunId(input, budgets, deps) {
646
646
  deps.onProgress?.("discovery");
647
647
  const discoveryStart = deps.now();
648
648
  while (deps.now() - discoveryStart < budgets.discoveryMs) {
649
- await deps.sleep(budgets.pollMs);
650
649
  const ws = await safePoll(
651
650
  () => deps.findWorkspace({
652
651
  token: input.token,
@@ -656,6 +655,7 @@ async function discoverRunId(input, budgets, deps) {
656
655
  () => deps.onProgress?.("retry")
657
656
  );
658
657
  if (ws?.currentRunId) return ws.currentRunId;
658
+ await deps.sleep(budgets.pollMs);
659
659
  }
660
660
  return null;
661
661
  }
@@ -4860,7 +4860,7 @@ async function looksLikeRegionsRepo(dir) {
4860
4860
  }
4861
4861
 
4862
4862
  // src/cli.ts
4863
- var VERSION = "0.10.14";
4863
+ var VERSION = "0.10.15";
4864
4864
  var program = new Command();
4865
4865
  program.name("create-op-node").description(
4866
4866
  "Interactive bootstrap for an Opus Populi federation node.\nCloudflare infrastructure \u2192 Mac Studio \u2192 live public API."