From 0dbdaa82355d4cd411cd54a413365794751a49f2 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Sun, 8 Dec 2024 12:14:33 +0000 Subject: [PATCH] chore(lune): install deps *after* generating all packages --- .lune/build.luau | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.lune/build.luau b/.lune/build.luau index bca778e..e1e4037 100644 --- a/.lune/build.luau +++ b/.lune/build.luau @@ -117,8 +117,8 @@ for tool, generators in lib.generators do local toolManifest: manifest.PesdeManifest = { name = `pesde/scripts_{toolChoice}`, version = toolMeta.version, - -- For the description, we capitalize the first letter of the tool name here - -- since it is a proper noun + -- For the description, we capitalize the first letter of the tool name here + -- since it is a proper noun description = `Scripts for {string.gsub(toolChoice, "^%l", string.upper)}-based Roblox projects.`, authors = { "daimond113 (https://www.daimond113.com/)", @@ -160,7 +160,7 @@ for tool, generators in lib.generators do (os.clock() - startTime) * 1000 )}{stdio.style("reset")})\n` ) - - -- Now we install the dependencies for the newly created projects - process.exit(installDeps()) end + +-- Now we install the dependencies for the newly created projects +process.exit(installDeps())