From 0e12c3da4ef0f7392cbcd34096c240f7480bce6b Mon Sep 17 00:00:00 2001 From: Oscar Esgalha Date: Thu, 2 Sep 2021 09:15:03 -0300 Subject: [PATCH] chore: delete bundled js after building --- cli/build.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/build.ts b/cli/build.ts index 84b8e56..fe07dfa 100644 --- a/cli/build.ts +++ b/cli/build.ts @@ -94,3 +94,5 @@ for (const target of TARGETS) { await compile(target); await compress(target); } + +await Deno.remove(conf.output);