@artblocks/abx-cli 0.1.0-alpha.6 → 0.1.0-alpha.7

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/main.js CHANGED
@@ -155,7 +155,7 @@ async function main() {
155
155
  return;
156
156
  }
157
157
  // Notify-only "you're behind" nudge (cached, opt-out, stderr — see update-check.ts). Awaited so
158
- // the notice lands before command output, but it hits the network at most once a day and never
158
+ // the notice lands before command output, but it hits the network at most once every 6h and never
159
159
  // throws, so it can't break or meaningfully slow a command. Skipped for the pure help path below.
160
160
  await maybeNotifyUpdate(flags);
161
161
  // SAFETY: --help / -h on ANY command is read-only — print usage, never execute.
@@ -5498,7 +5498,7 @@ function help() {
5498
5498
  ${g('abx version')} print the installed CLI version
5499
5499
 
5500
5500
  ${dim('Run')} ${g('abx <command> --help')} ${dim('for per-command usage. --help / -h never executes — it only prints usage.')}
5501
- ${dim('abx checks npm for a newer release (once a day, notify-only). Silence with')} ${g('ABX_NO_UPDATE_CHECK=1')} ${dim('or')} ${g('--no-update-check')}${dim('.')}
5501
+ ${dim('abx checks npm for a newer release (every 6h, notify-only). Silence with')} ${g('ABX_NO_UPDATE_CHECK=1')} ${dim('or')} ${g('--no-update-check')}${dim('.')}
5502
5502
  `);
5503
5503
  }
5504
5504
  /** Validate an explicit --salt (a 32-byte hex). Undefined when absent. */