@dotenvx/dotenvx-ops 0.46.0 → 0.46.1

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/CHANGELOG.md CHANGED
@@ -2,7 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
- [Unreleased](https://github.com/dotenvx/dotenvx-ops/compare/v0.46.0...main)
5
+ [Unreleased](https://github.com/dotenvx/dotenvx-ops/compare/v0.46.1...main)
6
+
7
+ ## [0.46.1](https://github.com/dotenvx/dotenvx-ops/compare/v0.46.0...v0.46.1) (2026-05-13)
8
+
9
+ ### Changed
10
+
11
+ * Surface `--no-spinner` ([#72](https://github.com/dotenvx/dotenvx-ops/pull/72))
6
12
 
7
13
  ## [0.46.0](https://github.com/dotenvx/dotenvx-ops/compare/v0.45.3...v0.46.0) (2026-05-13)
8
14
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.46.0",
2
+ "version": "0.46.1",
3
3
  "name": "@dotenvx/dotenvx-ops",
4
4
  "description": "Secrets for agents–from the creator of `dotenv` and `dotenvx`",
5
5
  "author": "@motdotla",
@@ -133,6 +133,7 @@ program
133
133
  .option('-h, --hostname <url>', 'set hostname')
134
134
  .option('--token <token>', 'set token')
135
135
  .option('--team <team>', 'team to generate keypair for')
136
+ .option('--no-spinner', 'disable spinner output')
136
137
  .option('--pp, --pretty-print', 'pretty print output')
137
138
  .action(keypairAction)
138
139
 
@@ -4,7 +4,7 @@ const FRAME_INTERVAL_MS = 80
4
4
  async function createSpinner2 (options = {}) {
5
5
  const stream = process.stderr
6
6
  const hasCursorControls = typeof stream.cursorTo === 'function' && typeof stream.clearLine === 'function'
7
- const enabled = Boolean(stream.isTTY && hasCursorControls && !options.quiet && !options.verbose && !options.debug)
7
+ const enabled = Boolean(stream.isTTY && hasCursorControls && options.spinner !== false && !options.quiet && !options.verbose && !options.debug)
8
8
  if (!enabled) return null
9
9
 
10
10
  const text = options.text || 'thinking'