From c2cf89f1d2dc411923a9e9fdfdc01c11cb84cbe8 Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Fri, 7 Nov 2025 15:29:27 -0800 Subject: [PATCH] Only one proc needed --- main.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/main.ts b/main.ts index a135c46..31951c7 100644 --- a/main.ts +++ b/main.ts @@ -41,10 +41,7 @@ try { const isDev = process.env.NODE_ENV !== "production" const noElide = isDev ? "--elide-lines=0" : "" - procs = await Promise.all([ - run(["bun", "run", noElide, "--filter=@workshop/http", "start"]), - run(["bun", "run", noElide, "--filter=@workshop/spike", "bot:discord"]), - ]) + procs = await Promise.all([run(["bun", "run", noElide, "--filter=@workshop/http", "start"])]) console.log("✅ All processes completed successfully") } catch (error) { console.error("❌ One or more processes failed:", error)