From df81390c01063594c5f2c883720b506cdb5d842b Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Wed, 27 Sep 2023 00:30:06 +0530 Subject: [PATCH] chore(scripts): fix darklua config file getting removed before build --- .lune/make.luau | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.lune/make.luau b/.lune/make.luau index 39e3251..89a134a 100644 --- a/.lune/make.luau +++ b/.lune/make.luau @@ -63,12 +63,6 @@ fs.writeFile( }) ) -codegen({ - rules = { - "config", - }, -}) - local loader = task.spawn(function() local chars = { "-", "\\", "|", "/" } local isFirstRun = true @@ -108,6 +102,6 @@ task.spawn(function() print() print(`{WAX_PREFIX_FORMAT("info")} Successfully built terracotta.luau!`) end -end) -fs.removeFile(".darklua.json5") + fs.removeFile(".darklua.json5") +end)