From e5dc79d36863dc024b153dfba5b8e32e7a0eb7fd Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Sun, 8 Dec 2024 11:52:32 +0000 Subject: [PATCH] chore(lune): build script fixes and improvements * Always display scopes, even for top level as `main`. * Fix prefix scope being incorrectly displayed, and make both `pesde` and `main` scopes aligned. * Name prefix constants correctly. * Use proper author name for @daimond113 in generated manifests. * Display time elapsed in ms instead of secs. --- .lune/build.luau | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.lune/build.luau b/.lune/build.luau index 67dad66..2c903cf 100644 --- a/.lune/build.luau +++ b/.lune/build.luau @@ -43,18 +43,18 @@ local function logPrefix(type: "error" | "info") elseif type == "info" then "green" else error(`Invalid type: {type}`) - return `pesde::{stdio.style("bold")}{stdio.color(statusColor)}{type}{stdio.color("reset")}` + return `main::{stdio.style("bold")}{stdio.color(statusColor)}{type}{stdio.color("reset")}` end -local INFO_PREFIX = `[{logPrefix("info")}]` +local INFO_PREFIX = `[ {logPrefix("info")}]` local _ERROR_PREFIX = `[{logPrefix("error")}]` local function installDeps(): number - local STDOUT_LINE_PREFIX = `[pesde::{logPrefix("info")}]` - local PESDE_ERROR_PREFIX = `[pesde::{logPrefix("error")}]` + local PESDE_INFO_PREFIX = string.gsub(`[{logPrefix("info")}]`, "main", "pesde") + local PESDE_ERROR_PREFIX = string.gsub(`[{logPrefix("error")}]`, "main", "pesde") local SPINNER_STATES = { "⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏" } - stdio.write(`{STDOUT_LINE_PREFIX} Installing dependencies with pesde`) + stdio.write(`{PESDE_INFO_PREFIX} Installing dependencies with pesde`) -- Spawn our thread to display the spinner local spinnerThread = task.spawn(function() @@ -96,7 +96,7 @@ local function installDeps(): number stdio.ewrite(child.stderr) end - stdio.write(`{STDOUT_LINE_PREFIX} Installed dependencies with pesde successfully\n`) + stdio.write(`{PESDE_INFO_PREFIX} Installed dependencies with pesde successfully\n`) return child.code end @@ -119,7 +119,7 @@ for tool, generators in lib.generators do version = toolMeta.version, description = `Scripts for {toolChoice}-based Roblox projects`, authors = { - "dai (https://www.daimond113.com/)", + "daimond113 (https://www.daimond113.com/)", "Erica Marigold ", }, repository = "https://github.com/pesde-pkg/scripts", @@ -153,10 +153,10 @@ for tool, generators in lib.generators do pathfs.writeFile(toolScriptsDir:join("sourcemap_generator.luau"), sourcemapGeneratorScript) stdio.write( - `{INFO_PREFIX} Generated script project for tool {toolChoice} [{stdio.style("dim")}{string.format( - "%.2fs", - os.clock() - startTime - )}{stdio.style("reset")}]\n` + `{INFO_PREFIX} Generated script project for tool {toolChoice} ({stdio.style("dim")}{string.format( + "%.2fms", + (os.clock() - startTime) * 1000 + )}{stdio.style("reset")})\n` ) -- Now we install the dependencies for the newly created projects