From 842bcca1f400b54af235ae00e70ade7e4a4c72a9 Mon Sep 17 00:00:00 2001 From: Holly Date: Fri, 28 Jul 2023 09:48:08 +0100 Subject: [PATCH] Investigation --- tooling/fileSmasher.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tooling/fileSmasher.ts b/tooling/fileSmasher.ts index d085163..1849adc 100644 --- a/tooling/fileSmasher.ts +++ b/tooling/fileSmasher.ts @@ -63,6 +63,8 @@ for (const line of splitLines) { //resultLines.push(line.replace("export class", "class").replace("export interface", "interface").replace("export enum", "enum")); } +// Investigation const finalOutput = resultLines.join("\n"); console.log(finalOutput); +console.log(__dirname); writeFileSync("./combined.ts", finalOutput);