Like pnpm would allow to install a package to a specific workspace using pnpm -F <workspace> add <packageName>, it would be great to be able to do the same with Bun, since it supports workspaces nicely and natively.
What is the feature you are proposing to solve the problem?
Add a feature to Bun to install a package to a specific workspace:
bun -w <workspace> i <packageName>
# example
bun -w website i sanity
I don't really vibe with the -F (filter) from pnpm, I feel -w would make more sense to target a workspace from the package.json name
What is the problem this feature would solve?
Like pnpm would allow to install a package to a specific workspace using
pnpm -F <workspace> add <packageName>
, it would be great to be able to do the same with Bun, since it supports workspaces nicely and natively.What is the feature you are proposing to solve the problem?
Add a feature to Bun to install a package to a specific workspace:
I don't really vibe with the -F (filter) from pnpm, I feel
-w
would make more sense to target a workspace from thepackage.json
nameWhat alternatives have you considered?
No response