From 103328b0c526e3c560c11af72b2ae97d1eededdd Mon Sep 17 00:00:00 2001 From: Eduard Marbach Date: Mon, 28 Oct 2024 17:11:21 +0100 Subject: [PATCH] opt: write debug files into own folder --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 70fe1e8..0a4c2b4 100644 --- a/index.ts +++ b/index.ts @@ -197,7 +197,7 @@ const pipeline = async (value: ConfigArrInstance, arrType: ArrType) => { if (DEBUG_CREATE_FILES) { create.concat(changedQPs).forEach((e, i) => { - fs.writeFileSync(`test${i}.json`, JSON.stringify(e, null, 2), "utf-8"); + fs.writeFileSync(`debug/test${i}.json`, JSON.stringify(e, null, 2), "utf-8"); }); }