From e11e94c61c92ae7b0eeabd43bc65176de75084fb Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Mon, 19 Dec 2022 13:58:29 -0500 Subject: [PATCH] *Update dist --- dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index ea76f62..7056159 100644 --- a/dist/index.js +++ b/dist/index.js @@ -63,7 +63,7 @@ class Config { (0, bsert_1.default)(typeof json === "object", `Config file ${file} must be an object`); const settings = (0, deep_to_flat_object_1.default)(json); for (const key of Object.keys(settings)) { - const value = json[key]; + const value = settings[key]; let keyPath = key.split("."); let isArray = key.includes(".") && keyPath.length > 1 &&