@dotenvx/dotenvx 1.57.1 → 1.57.3
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 +13 -1
- package/README.md +1 -2
- package/package.json +1 -1
- package/src/cli/dotenvx.js +1 -1
- package/src/lib/extensions/ops.js +1 -1
- package/src/lib/helpers/executeDynamic.js +1 -17
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,19 @@
|
|
|
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.
|
|
5
|
+
[Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.57.3...main)
|
|
6
|
+
|
|
7
|
+
## [1.57.3](https://github.com/dotenvx/dotenvx/compare/v1.57.2...v1.57.3) (2026-03-26)
|
|
8
|
+
|
|
9
|
+
### Changes
|
|
10
|
+
|
|
11
|
+
* Simplify installed success message ([#766](https://github.com/dotenvx/dotenvx/pull/766))
|
|
12
|
+
|
|
13
|
+
## [1.57.2](https://github.com/dotenvx/dotenvx/compare/v1.57.1...v1.57.2) (2026-03-22)
|
|
14
|
+
|
|
15
|
+
### Changes
|
|
16
|
+
|
|
17
|
+
* Ran `npm audit` to update package-lock.json ([#763](https://github.com/dotenvx/dotenvx/pull/763))
|
|
6
18
|
|
|
7
19
|
## [1.57.1](https://github.com/dotenvx/dotenvx/compare/v1.57.0...v1.57.1) (2026-03-21)
|
|
8
20
|
|
package/README.md
CHANGED
|
@@ -42,7 +42,6 @@ dotenvx help
|
|
|
42
42
|
|
|
43
43
|
|
|
44
44
|
</details>
|
|
45
|
-
|
|
46
45
|
<details><summary>with curl 🌐</summary><br>
|
|
47
46
|
|
|
48
47
|
```sh
|
|
@@ -2606,7 +2605,7 @@ This is known as *Decryption at Access* and is written about in [the whitepaper]
|
|
|
2606
2605
|
|
|
2607
2606
|
|
|
2608
2607
|
|
|
2609
|
-
## Ops
|
|
2608
|
+
## Ops ⛨
|
|
2610
2609
|
|
|
2611
2610
|
[](https://dotenvx.com/ops)
|
|
2612
2611
|
|
package/package.json
CHANGED
package/src/cli/dotenvx.js
CHANGED
|
@@ -209,7 +209,7 @@ program.command('help [command]')
|
|
|
209
209
|
// dotenvx pro
|
|
210
210
|
program.addHelpText('after', ' ')
|
|
211
211
|
program.addHelpText('after', 'Advanced: ')
|
|
212
|
-
program.addHelpText('after', ' ops
|
|
212
|
+
program.addHelpText('after', ' ops ⛨ Ops [www.dotenvx.com/ops]')
|
|
213
213
|
program.addHelpText('after', ' ext 🔌 extensions')
|
|
214
214
|
|
|
215
215
|
// dotenvx ext
|
|
@@ -1,25 +1,9 @@
|
|
|
1
1
|
const path = require('path')
|
|
2
|
-
const fs = require('fs')
|
|
3
2
|
const childProcess = require('child_process')
|
|
4
3
|
const { logger } = require('../../shared/logger')
|
|
5
4
|
|
|
6
5
|
function installCommandForOps () {
|
|
7
|
-
|
|
8
|
-
if (userAgent.startsWith('pnpm/')) return 'pnpm add -g @dotenvx/dotenvx-ops'
|
|
9
|
-
if (userAgent.startsWith('yarn/')) return 'yarn global add @dotenvx/dotenvx-ops'
|
|
10
|
-
if (userAgent.startsWith('npm/')) return 'npm i -g @dotenvx/dotenvx-ops'
|
|
11
|
-
|
|
12
|
-
const cwd = process.cwd()
|
|
13
|
-
if (fs.existsSync(path.join(cwd, 'pnpm-lock.yaml'))) return 'pnpm add -g @dotenvx/dotenvx-ops'
|
|
14
|
-
if (fs.existsSync(path.join(cwd, 'yarn.lock'))) return 'yarn global add @dotenvx/dotenvx-ops'
|
|
15
|
-
if (
|
|
16
|
-
fs.existsSync(path.join(cwd, 'package-lock.json')) ||
|
|
17
|
-
fs.existsSync(path.join(cwd, 'npm-shrinkwrap.json'))
|
|
18
|
-
) return 'npm i -g @dotenvx/dotenvx-ops'
|
|
19
|
-
|
|
20
|
-
if (fs.existsSync(path.join(cwd, 'package.json'))) return 'npm i -g @dotenvx/dotenvx-ops'
|
|
21
|
-
|
|
22
|
-
return 'curl -sfS https://dotenvx.sh/ops | sh'
|
|
6
|
+
return 'npm i -g @dotenvx/dotenvx-ops'
|
|
23
7
|
}
|
|
24
8
|
|
|
25
9
|
function opsBanner (installCommand) {
|