bun
bun copied to clipboard
`bun --filter '*'` does not respect the dependency order
What version of Bun is running?
1.1.17+bb66bba1b
What platform is your computer?
Darwin 23.5.0 arm64 arm
What steps can reproduce the bug?
- Create a monorepo with two packages
A
andB
-
B
consumes the output of theA
package - Add
build
script to each package - Run
bun --filter '*' build
-
B
fails to build becauseA
's output is not ready yet
What is the expected behavior?
build
is executed in the B
package once A
is built
What do you see instead?
build starts concurrently
Additional information
No response