@karmaniverous/get-dotenv 3.1.13 → 3.1.14
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.
|
@@ -97,7 +97,7 @@ const getDotenv = async function () {
|
|
|
97
97
|
const {
|
|
98
98
|
parsed: dotenv
|
|
99
99
|
} = (0, _dotenvExpand.expand)({
|
|
100
|
-
ignoreProcessEnv:
|
|
100
|
+
ignoreProcessEnv: false,
|
|
101
101
|
parsed: {
|
|
102
102
|
...loaded,
|
|
103
103
|
...vars,
|
|
@@ -190,7 +190,7 @@ const getDotenvSync = function () {
|
|
|
190
190
|
const {
|
|
191
191
|
parsed: dotenv
|
|
192
192
|
} = (0, _dotenvExpand.expand)({
|
|
193
|
-
ignoreProcessEnv:
|
|
193
|
+
ignoreProcessEnv: false,
|
|
194
194
|
parsed: {
|
|
195
195
|
...loaded,
|
|
196
196
|
...vars,
|
package/lib/getDotenv.js
CHANGED
|
@@ -111,7 +111,7 @@ export const getDotenv = async (options = {}) => {
|
|
|
111
111
|
|
|
112
112
|
const outputKey = nanoid();
|
|
113
113
|
const { parsed: dotenv } = expand({
|
|
114
|
-
ignoreProcessEnv:
|
|
114
|
+
ignoreProcessEnv: false,
|
|
115
115
|
parsed: {
|
|
116
116
|
...loaded,
|
|
117
117
|
...vars,
|
|
@@ -228,7 +228,7 @@ export const getDotenvSync = (options = {}) => {
|
|
|
228
228
|
|
|
229
229
|
const outputKey = nanoid();
|
|
230
230
|
const { parsed: dotenv } = expand({
|
|
231
|
-
ignoreProcessEnv:
|
|
231
|
+
ignoreProcessEnv: false,
|
|
232
232
|
parsed: {
|
|
233
233
|
...loaded,
|
|
234
234
|
...vars,
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"bin": {
|
|
4
4
|
"getdotenv": "bin/getdotenv/index.js"
|
|
5
5
|
},
|
|
6
|
-
"version": "3.1.
|
|
6
|
+
"version": "3.1.14",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
9
9
|
},
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"commander": "^11.0.0",
|
|
40
40
|
"dotenv": "^16.3.1",
|
|
41
41
|
"dotenv-expand": "^10.0.0",
|
|
42
|
-
"execa": "^
|
|
42
|
+
"execa": "^8.0.1",
|
|
43
43
|
"fs-extra": "^11.1.1",
|
|
44
44
|
"lodash.frompairs": "^4.0.1",
|
|
45
45
|
"lodash.pick": "^4.4.0",
|
|
@@ -49,14 +49,14 @@
|
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@babel/cli": "^7.22.10",
|
|
52
|
-
"@babel/core": "^7.22.
|
|
53
|
-
"@babel/eslint-parser": "^7.22.
|
|
54
|
-
"@babel/preset-env": "^7.22.
|
|
52
|
+
"@babel/core": "^7.22.11",
|
|
53
|
+
"@babel/eslint-parser": "^7.22.11",
|
|
54
|
+
"@babel/preset-env": "^7.22.14",
|
|
55
55
|
"@babel/register": "^7.22.5",
|
|
56
|
-
"@types/node": "^20.5.
|
|
57
|
-
"chai": "^4.3.
|
|
56
|
+
"@types/node": "^20.5.8",
|
|
57
|
+
"chai": "^4.3.8",
|
|
58
58
|
"concat-md": "^0.5.1",
|
|
59
|
-
"eslint": "^8.
|
|
59
|
+
"eslint": "^8.48.0",
|
|
60
60
|
"eslint-plugin-mocha": "^10.1.0",
|
|
61
61
|
"eslint-plugin-promise": "^6.1.1",
|
|
62
62
|
"jsdoc-to-markdown": "^8.0.0",
|