@incanta/config
Advanced tools
Comparing version 0.1.20 to 0.1.21
@@ -58,2 +58,6 @@ "use strict"; | ||
for (const parentName of folderConfig.parentNames) { | ||
if (parentName === "default") { | ||
// skip explicitly stated default parents; they're already loaded | ||
continue; | ||
} | ||
(0, lodash_merge_1.default)(baseObj, Loader.load(path_1.default.join(folder, "..", parentName))); | ||
@@ -60,0 +64,0 @@ } |
{ | ||
"name": "@incanta/config", | ||
"version": "0.1.20", | ||
"version": "0.1.21", | ||
"main": "lib/index.js", | ||
@@ -5,0 +5,0 @@ "exports": { |
@@ -64,2 +64,6 @@ import fs from "fs"; | ||
for (const parentName of folderConfig.parentNames) { | ||
if (parentName === "default") { | ||
// skip explicitly stated default parents; they're already loaded | ||
continue; | ||
} | ||
merge(baseObj, Loader.load(path.join(folder, "..", parentName))); | ||
@@ -66,0 +70,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
36983
656