@dotenvx/next-env 2.0.0 → 2.0.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/README.md +1 -1
- package/dist/index.cjs +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -6201,8 +6201,7 @@ function processEnv(loadedEnvFiles, dir, log = console, forceReload = false, onR
|
|
|
6201
6201
|
const parsed = {};
|
|
6202
6202
|
for (const envFile of loadedEnvFiles) {
|
|
6203
6203
|
try {
|
|
6204
|
-
|
|
6205
|
-
result.parsed = parse(envFile.contents);
|
|
6204
|
+
const result = parse(envFile.contents);
|
|
6206
6205
|
if (result.parsed && !previousLoadedEnvFiles.some(
|
|
6207
6206
|
(item) => item.contents === envFile.contents && item.path === envFile.path
|
|
6208
6207
|
)) {
|