@dotenvx/dotenvx 1.47.6 → 1.47.7
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/services/run.js +1 -0
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.47.
|
|
5
|
+
[Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.47.7...main)
|
|
6
|
+
|
|
7
|
+
## 1.47.7
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
* `src` should be in internal `processEnv` object ([#643](https://github.com/dotenvx/dotenvx/pull/643))
|
|
6
12
|
|
|
7
13
|
## 1.47.6
|
|
8
14
|
|
package/package.json
CHANGED
package/src/lib/services/run.js
CHANGED
|
@@ -97,6 +97,7 @@ class Run {
|
|
|
97
97
|
const privateKeyName = guessPrivateKeyName(envFilepath)
|
|
98
98
|
const { parsed, errors, injected, preExisted } = new Parse(src, privateKey, this.processEnv, this.overload, privateKeyName).run()
|
|
99
99
|
|
|
100
|
+
row.src = src
|
|
100
101
|
row.parsed = parsed
|
|
101
102
|
row.errors = errors
|
|
102
103
|
row.injected = injected
|