Hey everyone,
Loving Bun so far and tried it in a few. small projects and worked flawlessly.
I now wanted to try it in a bigger one, a monorepo built with yarn workspaces feature.
We have the basic root package.json as follow:
...
"private": true,
"workspaces": [
"packages/*"
],
...
}```.
Then two packages `a`, an UI library, and `b` the main app, and consumer.
In their respective `package.json` they have a `name` property as follow: `@organization/<package>`.
With `yarn`, when running `yarn run dev` on the app, it would execute the following:
`"dev": "yarn prebuild && webpack serve",`
the `prebuild` command is where I run into an issue. It would do the following:
`"prebuild": "yarn workspace @organization/a build",`.
I tried combinations with `bun run`, `bunx` and such, and couldn't translate it properly and make it work.
How should I proceed?
Thanks ❤️