no js dev process for web frontend none
All checks were successful
Publish npm package / publish (push) Successful in 19s

This commit is contained in:
Gregor Lohaus
2026-05-24 16:26:36 +02:00
parent 7cd943cced
commit 7923514c5c
4 changed files with 9 additions and 5 deletions

View File

@@ -62,7 +62,9 @@ const s = p.spinner();
s.start("Installing dependencies");
await Bun.$`bun install`.cwd(path.join(destDir)).quiet();
await Bun.$`bun install`.cwd(path.join(destDir,'packages','rpc')).quiet();
await Bun.$`bun install`.cwd(path.join(destDir,'apps','web')).quiet();
if (project.frontend !== "none") {
await Bun.$`bun install`.cwd(path.join(destDir,'apps','web')).quiet();
}
s.stop("Dependencies installed.");
p.outro("You're all set!");