From fac8d24f1e611224ca6650b03cf0230a7adc6111 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 18 Sep 2023 11:34:52 +0200 Subject: Reduce code to only work with $PWD --- src/config.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/config.ts') diff --git a/src/config.ts b/src/config.ts index 064b038..8fbe3c1 100644 --- a/src/config.ts +++ b/src/config.ts @@ -2,8 +2,6 @@ import path from "node:path"; import fs from "node:fs"; import toml from "toml"; -export default function readConfig(base: string) { - const filename = path.join(base, "config.toml"); - - return toml.parse(fs.readFileSync(filename, "utf-8")); +export default function readConfig() { + return toml.parse(fs.readFileSync("config.toml", "utf-8")); } -- cgit 1.4.1