mirror of
https://github.com/pesde-pkg/scripts.git
synced 2024-12-12 15:00:37 +00:00
chore(lune): install deps *after* generating all packages
This commit is contained in:
parent
9ecf980110
commit
0dbdaa8235
1 changed files with 5 additions and 5 deletions
|
@ -117,8 +117,8 @@ for tool, generators in lib.generators do
|
||||||
local toolManifest: manifest.PesdeManifest = {
|
local toolManifest: manifest.PesdeManifest = {
|
||||||
name = `pesde/scripts_{toolChoice}`,
|
name = `pesde/scripts_{toolChoice}`,
|
||||||
version = toolMeta.version,
|
version = toolMeta.version,
|
||||||
-- For the description, we capitalize the first letter of the tool name here
|
-- For the description, we capitalize the first letter of the tool name here
|
||||||
-- since it is a proper noun
|
-- since it is a proper noun
|
||||||
description = `Scripts for {string.gsub(toolChoice, "^%l", string.upper)}-based Roblox projects.`,
|
description = `Scripts for {string.gsub(toolChoice, "^%l", string.upper)}-based Roblox projects.`,
|
||||||
authors = {
|
authors = {
|
||||||
"daimond113 <contact@daimond113.com> (https://www.daimond113.com/)",
|
"daimond113 <contact@daimond113.com> (https://www.daimond113.com/)",
|
||||||
|
@ -160,7 +160,7 @@ for tool, generators in lib.generators do
|
||||||
(os.clock() - startTime) * 1000
|
(os.clock() - startTime) * 1000
|
||||||
)}{stdio.style("reset")})\n`
|
)}{stdio.style("reset")})\n`
|
||||||
)
|
)
|
||||||
|
|
||||||
-- Now we install the dependencies for the newly created projects
|
|
||||||
process.exit(installDeps())
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Now we install the dependencies for the newly created projects
|
||||||
|
process.exit(installDeps())
|
||||||
|
|
Loading…
Reference in a new issue