From 42ac29359c1f08e68370a92e0bba7b7fffe098b5 Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 15 Apr 2025 11:58:55 +0100 Subject: [PATCH] nonexistent --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index 2eabad3..77cefb8 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -37,7 +37,7 @@ export function loadJsonFile(...paths: string[]): T { const joinedPaths = path.join(...paths); if (!fs.existsSync(joinedPaths)) { - console.log(`Skipping nonexisting file: ${joinedPaths}`); + console.log(`Skipping nonexistent file: ${joinedPaths}`); return {} as T; }