@pourkit/cli 0.0.0-next-20260705165838 → 0.0.0-next-20260707180736

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
@@ -10288,19 +10288,14 @@ function runQueueLoopEffect(options, results) {
10288
10288
  };
10289
10289
  }
10290
10290
  const newResults = [...results, outcome];
10291
- if (options.queueRunContext?.resumeIssueNumber !== void 0) {
10292
- return {
10293
- drained: true,
10294
- processedCount: newResults.length,
10295
- results: newResults,
10296
- selected: null,
10297
- reason: "Resumed issue processed.",
10298
- code: "drained",
10299
- allProcessedIssuesFinalizedIntoPrdBranch: Boolean(options.queueRunContext?.prdBranch) && newResults.length > 0 && newResults.every(
10300
- (result) => result.runResult.publicationStatus === "merged"
10301
- )
10302
- };
10303
- }
10291
+ const nextOptions = options.queueRunContext?.resumeIssueNumber !== void 0 ? {
10292
+ ...options,
10293
+ queueRunContext: {
10294
+ prdRef: options.queueRunContext.prdRef,
10295
+ prdBranch: options.queueRunContext.prdBranch,
10296
+ ...options.queueRunContext.beadsChild ? { beadsChild: options.queueRunContext.beadsChild } : {}
10297
+ }
10298
+ } : options;
10304
10299
  const processedIssue = yield* Effect9.tryPromise({
10305
10300
  try: () => options.issueProvider.fetchIssue(outcome.selected.number),
10306
10301
  catch: (e) => {
@@ -10311,9 +10306,9 @@ function runQueueLoopEffect(options, results) {
10311
10306
  }
10312
10307
  });
10313
10308
  if (processedIssue.state === "closed") {
10314
- yield* reconcileBlockedEffect(options);
10309
+ yield* reconcileBlockedEffect(nextOptions);
10315
10310
  }
10316
- return yield* runQueueLoopEffect(options, newResults);
10311
+ return yield* runQueueLoopEffect(nextOptions, newResults);
10317
10312
  });
10318
10313
  }
10319
10314
  function runQueueLoop(options) {
@@ -19332,11 +19327,11 @@ function createCliProgram(version) {
19332
19327
  return program;
19333
19328
  }
19334
19329
  async function resolveCliVersion() {
19335
- if (isPackageVersion("0.0.0-next-20260705165838")) {
19336
- return "0.0.0-next-20260705165838";
19330
+ if (isPackageVersion("0.0.0-next-20260707180736")) {
19331
+ return "0.0.0-next-20260707180736";
19337
19332
  }
19338
- if (isReleaseVersion("0.0.0-next-20260705165838")) {
19339
- return "0.0.0-next-20260705165838";
19333
+ if (isReleaseVersion("0.0.0-next-20260707180736")) {
19334
+ return "0.0.0-next-20260707180736";
19340
19335
  }
19341
19336
  try {
19342
19337
  const root = repoRoot();