@dotenvx/dotenvx 1.43.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 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.43.0...main)
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))
12
+
13
+ ## [1.44.0](https://github.com/dotenvx/dotenvx/compare/v1.43.0...v1.44.0)
14
+
15
+ ### Added
16
+
17
+ * Add `armv7` support ([#593](https://github.com/dotenvx/dotenvx/pull/593))
6
18
 
7
19
  ## [1.43.0](https://github.com/dotenvx/dotenvx/compare/v1.42.2...v1.43.0)
8
20
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.43.0",
2
+ "version": "1.44.1",
3
3
  "name": "@dotenvx/dotenvx",
4
4
  "description": "a better dotenv–from the creator of `dotenv`",
5
5
  "author": "@motdotla",
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 SetOutput = {
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
  *