paratix 0.12.4 → 0.12.5

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
@@ -2858,9 +2858,8 @@ async function sftpUploadContent(client, content, remotePath, timeout = SFTP_TIM
2858
2858
  return;
2859
2859
  }
2860
2860
  wireStreams({
2861
- completionEvents: ["finish"],
2861
+ completionEvents: ["finish", "close"],
2862
2862
  connectionAbortSignal,
2863
- prematureCloseMessage: `SFTP content upload closed before finish: ${maskedRemotePath}`,
2864
2863
  readStream: streams.readStream,
2865
2864
  reject,
2866
2865
  resolve: resolve2,
@@ -5523,7 +5522,7 @@ async function runApplyCommand(file, options, run = runPlaybook) {
5523
5522
  if (options.diff && !options.dryRun) {
5524
5523
  throw new CliUsageError("--diff requires --dry-run");
5525
5524
  }
5526
- printCliHeader("0.12.4-9540084");
5525
+ printCliHeader("0.12.5-d47e812");
5527
5526
  const environmentOverrides = applyCliEnvironmentOverrides(options.env, {
5528
5527
  firstRun: options.firstRun
5529
5528
  });
@@ -5552,7 +5551,7 @@ function exitAfterApplyError(error, verbose) {
5552
5551
  process.exit(exitCode);
5553
5552
  }
5554
5553
  var program = new Command();
5555
- program.name("paratix").description("Idempotent VPS setup tool in TypeScript").version("0.12.4-9540084");
5554
+ program.name("paratix").description("Idempotent VPS setup tool in TypeScript").version("0.12.5-d47e812");
5556
5555
  program.command("apply <file>").description("Apply a server definition").option(
5557
5556
  "--diff",
5558
5557
  "When combined with --dry-run, show a unified diff per module that would change.",