From 6eccb75525f2e9e36b20ab8f197d3a8a6cf762a0 Mon Sep 17 00:00:00 2001 From: Edwin Sirko Date: Fri, 26 Jan 2024 16:10:55 -0500 Subject: [PATCH] fix --- src/fs-helper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fs-helper.ts b/src/fs-helper.ts index a3e8f56..7dfd22b 100644 --- a/src/fs-helper.ts +++ b/src/fs-helper.ts @@ -119,7 +119,7 @@ export function readFileContents(filePath: string): Buffer { return fs.readFileSync(filePath) } -export function bundleFilesintoDirectory(filePaths: string[]): string { +function bundleFilesintoDirectory(filePaths: string[]): string { const targetDir: string = createTempDir() for (const filePath of filePaths) { if (!fs.existsSync(filePath)) {