You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that when I run bun run --filter '*' myCommand Bun will only run a maximum of 2 scripts concurrently. I want to use this command to run several web servers in parallel but because Bun waits for the scripts to terminate, most of my services never run because they're stuck on Waiting for 1 other script(s).
Is there any way to tell bun run --filter to run ALL the scripts in parallel without any limits?
Looking at the code I wonder if this is happening not because of some concurrency limit, but because Bun is trying to account for workspace dependencies? In my case, the scripts are safe to run in any order and in parallel, so it would be nice to be able to tell Bun to ignore any dependencies and run everything all at once.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
It seems that when I run
bun run --filter '*' myCommandBun will only run a maximum of 2 scripts concurrently. I want to use this command to run several web servers in parallel but because Bun waits for the scripts to terminate, most of my services never run because they're stuck onWaiting for 1 other script(s).Is there any way to tell
bun run --filterto run ALL the scripts in parallel without any limits?Looking at the code I wonder if this is happening not because of some concurrency limit, but because Bun is trying to account for workspace dependencies? In my case, the scripts are safe to run in any order and in parallel, so it would be nice to be able to tell Bun to ignore any dependencies and run everything all at once.
Beta Was this translation helpful? Give feedback.
All reactions