I have the following two scripts in the package.json which I would like to run together concurrently. How would I achieve that with Bun? In the past I would need to opt for an npm package to do this.
"dev": "bun run --hot --watch src/index.tsx",
"tailwind:dev": "bunx tailwindcss -i ./src/style.css -o ./public/style.css --watch"
Alternatively, how else would I have the tailwind output css file update when src files change?