@dotenvx/dotenvx-ops 0.17.0 → 0.17.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 +7 -1
- package/package.json +1 -1
- package/src/cli/actions/sync.js +4 -4
- package/src/lib/services/sync.js +1 -1
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.17.
|
|
5
|
+
[Unreleased](https://github.com/dotenvx/dotenvx-ops/compare/v0.17.1...main)
|
|
6
|
+
|
|
7
|
+
## [0.17.1](https://github.com/dotenvx/dotenvx-ops/compare/v0.17.0...v0.17.1) (2025-10-01)
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
* API sync output is `files` not `envFiles`
|
|
6
12
|
|
|
7
13
|
## [0.17.0](https://github.com/dotenvx/dotenvx-ops/compare/v0.16.1...v0.17.0) (2025-10-01)
|
|
8
14
|
|
package/package.json
CHANGED
package/src/cli/actions/sync.js
CHANGED
|
@@ -26,12 +26,12 @@ async function sync () {
|
|
|
26
26
|
const {
|
|
27
27
|
dotenvxProjectId,
|
|
28
28
|
projectUsernameName,
|
|
29
|
-
|
|
29
|
+
files
|
|
30
30
|
} = await new Sync(options.hostname).run()
|
|
31
|
-
logger.debug(`
|
|
31
|
+
logger.debug(`files: ${JSON.stringify(files)}`)
|
|
32
32
|
|
|
33
|
-
// write
|
|
34
|
-
for (const file of
|
|
33
|
+
// write output files
|
|
34
|
+
for (const file of files) {
|
|
35
35
|
const { filepath, src, sha } = file
|
|
36
36
|
|
|
37
37
|
let needsWrite = true
|