@pourkit/cli 0.0.0-next-20260617223106 → 0.0.0-next-20260617232425

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
@@ -14186,6 +14186,7 @@ async function applyInitFromSource(options) {
14186
14186
  packageManager,
14187
14187
  noGitCheck,
14188
14188
  skipInstall,
14189
+ releaseWorkflow,
14189
14190
  labelConflictPolicy
14190
14191
  } = options;
14191
14192
  const ghClientResult = await tryCreateGitHubClient({ cwd: targetRoot });
@@ -14199,6 +14200,7 @@ async function applyInitFromSource(options) {
14199
14200
  noGitCheck,
14200
14201
  skipInstall,
14201
14202
  labels: options.labels,
14203
+ releaseWorkflow,
14202
14204
  labelConflictPolicy,
14203
14205
  githubClient
14204
14206
  });
@@ -14377,6 +14379,7 @@ ${plan.warnings.length} warning(s) \u2014 review above before applying.`
14377
14379
  noGitCheck: options.noGitCheck,
14378
14380
  skipInstall: options.skipInstall,
14379
14381
  labels: planLabels,
14382
+ releaseWorkflow: options.releaseWorkflow,
14380
14383
  labelConflictPolicy: planLabelConflictPolicy
14381
14384
  });
14382
14385
  if (result.errors.length > 0) {
@@ -17431,11 +17434,11 @@ function createCliProgram(version) {
17431
17434
  return program;
17432
17435
  }
17433
17436
  async function resolveCliVersion() {
17434
- if (isPackageVersion("0.0.0-next-20260617223106")) {
17435
- return "0.0.0-next-20260617223106";
17437
+ if (isPackageVersion("0.0.0-next-20260617232425")) {
17438
+ return "0.0.0-next-20260617232425";
17436
17439
  }
17437
- if (isReleaseVersion("0.0.0-next-20260617223106")) {
17438
- return "0.0.0-next-20260617223106";
17440
+ if (isReleaseVersion("0.0.0-next-20260617232425")) {
17441
+ return "0.0.0-next-20260617232425";
17439
17442
  }
17440
17443
  try {
17441
17444
  const root = repoRoot();