@kevinmarrec/create-cloudstack-app
Version:
CLI that scaffolds an opinionated Bun & Vue fullstack application.
9 lines (6 loc) • 318 B
text/typescript
import concurrently, { type ConcurrentlyCommandInput } from 'concurrently'
const commandInputs: ConcurrentlyCommandInput[] = [
{ command: `bun --cwd backend dev`, name: 'backend', prefixColor: 'blue' },
{ command: `bun --cwd frontend dev`, name: 'frontend', prefixColor: 'green' },
]
concurrently(commandInputs)