@dotenvx/dotenvx 1.65.1 → 1.65.2
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.65.
|
|
5
|
+
[Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.65.2...main)
|
|
6
|
+
|
|
7
|
+
## [1.65.2](https://github.com/dotenvx/dotenvx/compare/v1.65.1...v1.65.2) (2026-05-13)
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
* Improve spinner message coordination between `dotenvx` and `dotenvx-ops` ([#813](https://github.com/dotenvx/dotenvx/pull/813))
|
|
6
12
|
|
|
7
13
|
## [1.65.1](https://github.com/dotenvx/dotenvx/compare/v1.65.0...v1.65.1) (2026-05-13)
|
|
8
14
|
|
package/package.json
CHANGED
package/src/cli/actions/run.js
CHANGED
|
@@ -53,7 +53,14 @@ async function run () {
|
|
|
53
53
|
readableStrings,
|
|
54
54
|
readableFilepaths,
|
|
55
55
|
uniqueInjectedKeys
|
|
56
|
-
} = await new Run(envs, options.overload, process.env, options.envKeysFile, noOps
|
|
56
|
+
} = await new Run(envs, options.overload, process.env, options.envKeysFile, noOps, {
|
|
57
|
+
beforeOpsKeypair: () => {
|
|
58
|
+
if (spinner) spinner.stop()
|
|
59
|
+
},
|
|
60
|
+
afterOpsKeypair: () => {
|
|
61
|
+
if (spinner) spinner.start('injecting')
|
|
62
|
+
}
|
|
63
|
+
}).run()
|
|
57
64
|
|
|
58
65
|
for (const processedEnv of processedEnvs) {
|
|
59
66
|
if (processedEnv.type === 'envFile') {
|
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
const Ops = require('../../extensions/ops')
|
|
2
2
|
|
|
3
|
-
async function opsKeypair (existingPublicKey) {
|
|
4
|
-
|
|
3
|
+
async function opsKeypair (existingPublicKey, options = {}) {
|
|
4
|
+
if (options.beforeOpsKeypair) await options.beforeOpsKeypair()
|
|
5
|
+
|
|
6
|
+
let kp
|
|
7
|
+
try {
|
|
8
|
+
kp = await new Ops().keypair(existingPublicKey)
|
|
9
|
+
} finally {
|
|
10
|
+
if (options.afterOpsKeypair) await options.afterOpsKeypair()
|
|
11
|
+
}
|
|
12
|
+
|
|
5
13
|
const publicKey = kp.public_key
|
|
6
14
|
const privateKey = kp.private_key
|
|
7
15
|
|
|
@@ -72,7 +72,10 @@ async function keyValues (filepath, opts = {}) {
|
|
|
72
72
|
|
|
73
73
|
// ops
|
|
74
74
|
if (!noOps && !privateKey && publicKey && publicKey.length > 0) {
|
|
75
|
-
const kp = await opsKeypair(publicKey
|
|
75
|
+
const kp = await opsKeypair(publicKey, {
|
|
76
|
+
beforeOpsKeypair: opts.beforeOpsKeypair,
|
|
77
|
+
afterOpsKeypair: opts.afterOpsKeypair
|
|
78
|
+
})
|
|
76
79
|
privateKey = kp.privateKey
|
|
77
80
|
}
|
|
78
81
|
|
package/src/lib/services/run.js
CHANGED
|
@@ -17,12 +17,14 @@ const {
|
|
|
17
17
|
} = require('./../helpers/keyResolution')
|
|
18
18
|
|
|
19
19
|
class Run {
|
|
20
|
-
constructor (envs = [], overload = false, processEnv = process.env, envKeysFilepath = null, noOps = false) {
|
|
20
|
+
constructor (envs = [], overload = false, processEnv = process.env, envKeysFilepath = null, noOps = false, options = {}) {
|
|
21
21
|
this.envs = envs
|
|
22
22
|
this.overload = overload
|
|
23
23
|
this.processEnv = processEnv
|
|
24
24
|
this.envKeysFilepath = envKeysFilepath
|
|
25
25
|
this.noOps = noOps
|
|
26
|
+
this.beforeOpsKeypair = options.beforeOpsKeypair
|
|
27
|
+
this.afterOpsKeypair = options.afterOpsKeypair
|
|
26
28
|
|
|
27
29
|
this.processedEnvs = []
|
|
28
30
|
this.readableFilepaths = new Set()
|
|
@@ -179,7 +181,12 @@ class Run {
|
|
|
179
181
|
this.readableFilepaths.add(envFilepath)
|
|
180
182
|
|
|
181
183
|
const { privateKeyName } = keyNames(filepath)
|
|
182
|
-
const { privateKeyValue } = await keyValues(filepath, {
|
|
184
|
+
const { privateKeyValue } = await keyValues(filepath, {
|
|
185
|
+
keysFilepath: this.envKeysFilepath,
|
|
186
|
+
noOps: this.noOps,
|
|
187
|
+
beforeOpsKeypair: this.beforeOpsKeypair,
|
|
188
|
+
afterOpsKeypair: this.afterOpsKeypair
|
|
189
|
+
})
|
|
183
190
|
|
|
184
191
|
const {
|
|
185
192
|
parsed,
|