@dotenvx/dotenvx 1.44.0 → 1.44.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/lib/main.d.ts +7 -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/compare/v1.44.
|
|
5
|
+
[Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.44.1...main)
|
|
6
|
+
|
|
7
|
+
## [1.44.1](https://github.com/dotenvx/dotenvx/compare/v1.44.0...v1.44.1)
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
* Patch `SetOutput` type ([#597](https://github.com/dotenvx/dotenvx/pull/597))
|
|
6
12
|
|
|
7
13
|
## [1.44.0](https://github.com/dotenvx/dotenvx/compare/v1.43.0...v1.44.0)
|
|
8
14
|
|
package/package.json
CHANGED
package/src/lib/main.d.ts
CHANGED
|
@@ -199,7 +199,7 @@ export interface SetOptions {
|
|
|
199
199
|
encrypt?: boolean;
|
|
200
200
|
}
|
|
201
201
|
|
|
202
|
-
export type
|
|
202
|
+
export type SetProcessedEnv = {
|
|
203
203
|
key: string;
|
|
204
204
|
value: string;
|
|
205
205
|
filepath: string;
|
|
@@ -214,6 +214,12 @@ export type SetOutput = {
|
|
|
214
214
|
error?: Error;
|
|
215
215
|
};
|
|
216
216
|
|
|
217
|
+
export type SetOutput = {
|
|
218
|
+
processedEnvs: SetProcessedEnv[];
|
|
219
|
+
changedFilepaths: string[];
|
|
220
|
+
unchangedFilepaths: string[];
|
|
221
|
+
};
|
|
222
|
+
|
|
217
223
|
/**
|
|
218
224
|
* Set a single environment variable.
|
|
219
225
|
*
|