From 9508d5f059b58e6f1cd3f7ee5c1b54fb0f2315c2 Mon Sep 17 00:00:00 2001 From: Nikola Hristov Date: Wed, 20 Sep 2023 23:58:06 +0300 Subject: [PATCH] squash! --- Source/Configuration/ESBuild.ts | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/Source/Configuration/ESBuild.ts b/Source/Configuration/ESBuild.ts index 181864f5..836c34fe 100644 --- a/Source/Configuration/ESBuild.ts +++ b/Source/Configuration/ESBuild.ts @@ -21,21 +21,11 @@ export default { name: "Target", setup(Build: Build) { Build.onStart(async () => { - try { - await Access(Out, Constant.R_OK); - } catch (_Error) { - await Make(Out, { - recursive: true, - }); - } - try { await Remove(Out, { recursive: true, }); - } catch (_Error) { - console.log(_Error); - } + } catch (_Error) {} }); }, },