@dotenvx/dotenvx 1.57.3 → 1.57.4

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/compare/v1.57.3...main)
5
+ [Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.57.4...main)
6
+
7
+ ## [1.57.4](https://github.com/dotenvx/dotenvx/compare/v1.57.3...v1.57.4) (2026-03-26)
8
+
9
+ ### Changes
10
+
11
+ * Use `curl` example for install [dotenvx.com/ops](https://dotenvx.com/ops) ([#767](https://github.com/dotenvx/dotenvx/pull/766))
6
12
 
7
13
  ## [1.57.3](https://github.com/dotenvx/dotenvx/compare/v1.57.2...v1.57.3) (2026-03-26)
8
14
 
@@ -58,7 +64,7 @@ All notable changes to this project will be documented in this file. See [standa
58
64
 
59
65
  ### Added
60
66
 
61
- * Add 'KEYS OFF COMPUTER' security feature when [dotenvx-ops](https://dotenvx.com/ops) installed ([#746](https://github.com/dotenvx/dotenvx/pull/746))
67
+ * Add '⛨ ARMORED KEYS: Harden your private keys.' security feature when [dotenvx-ops](https://dotenvx.com/ops) installed ([#746](https://github.com/dotenvx/dotenvx/pull/746))
62
68
 
63
69
  ### Removed
64
70
 
package/README.md CHANGED
@@ -2609,7 +2609,7 @@ This is known as *Decryption at Access* and is written about in [the whitepaper]
2609
2609
 
2610
2610
  [![dotenvx-ops](https://dotenvx.com/dotenvx-ops-banner.png?v=3)](https://dotenvx.com/ops)
2611
2611
 
2612
- > KEYS OFF COMPUTER
2612
+ > ⛨ ARMORED KEYS: Harden your private keys.
2613
2613
 
2614
2614
  ### Quickstart
2615
2615
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.57.3",
2
+ "version": "1.57.4",
3
3
  "name": "@dotenvx/dotenvx",
4
4
  "description": "a secure dotenv–from the creator of `dotenv`",
5
5
  "author": "@motdotla",
@@ -3,7 +3,7 @@ const childProcess = require('child_process')
3
3
  const { logger } = require('../../shared/logger')
4
4
 
5
5
  function installCommandForOps () {
6
- return 'npm i -g @dotenvx/dotenvx-ops'
6
+ return 'curl -sfS https://dotenvx.sh/ops | sh'
7
7
  }
8
8
 
9
9
  function opsBanner (installCommand) {
@@ -12,13 +12,13 @@ function opsBanner (installCommand) {
12
12
  ' ██████╗ ██████╗ ███████╗',
13
13
  ' ██╔═══██╗██╔══██╗██╔════╝',
14
14
  ' ██║ ██║██████╔╝███████╗',
15
- ' ██║ ██║██╔═══╝ ╚════██║',
15
+ ' ██║ ██║██╔═══╝ ╚════██║ [www.dotenvx.com/ops]',
16
16
  ' ╚██████╔╝██║ ███████║',
17
17
  ' ╚═════╝ ╚═╝ ╚══════╝',
18
18
  '',
19
- ' KEYS OFF COMPUTER: Add hardened key protection with dotenvx-ops.',
20
- ` Install now: [${installCommand}]`,
21
- ' Learn more: [https://dotenvx.com/ops]'
19
+ ' ⛨ ARMORED KEYS: Harden your private keys.',
20
+ ` ⮕ install [${installCommand}]`,
21
+ ' ⮕ and then run [dotenvx-ops login]'
22
22
  ]
23
23
 
24
24
  const innerWidth = Math.max(67, ...lines.map((line) => line.length))