From 4dca570ba8fde65dc953d49496837746fccef5e9 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 21 Sep 2022 17:17:09 -0400 Subject: [PATCH] *Update dist --- dist/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 13a70f2..7acbbcd 100644 --- a/dist/index.js +++ b/dist/index.js @@ -107,10 +107,9 @@ class Config { files.forEach(this.openJson); } openJson(file) { - const path = this.getFile(file); let json; try { - json = fs_1.default.readFileSync(path, "utf8"); + json = fs_1.default.readFileSync(file, "utf8"); json = JSON.parse(json); } catch (e) {