@karmaniverous/get-dotenv 3.1.12 → 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: true,
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: true,
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: true,
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: true,
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.12",
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": "^7.1.1",
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",
@@ -48,20 +48,20 @@
48
48
  "pkg-dir": "^7.0.0"
49
49
  },
50
50
  "devDependencies": {
51
- "@babel/cli": "^7.22.6",
52
- "@babel/core": "^7.22.6",
53
- "@babel/eslint-parser": "^7.22.6",
54
- "@babel/preset-env": "^7.22.6",
51
+ "@babel/cli": "^7.22.10",
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.3.3",
57
- "chai": "^4.3.7",
56
+ "@types/node": "^20.5.8",
57
+ "chai": "^4.3.8",
58
58
  "concat-md": "^0.5.1",
59
- "eslint": "^8.44.0",
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",
63
63
  "mocha": "^10.2.0",
64
- "release-it": "^15.11.0"
64
+ "release-it": "^16.1.5"
65
65
  },
66
66
  "exports": {
67
67
  ".": {