feat: add unified dev script for concurrent development (#113)

Add a "dev" script that runs the server, web build, and UI dev mode
concurrently with colored output for easier development workflow.
This commit is contained in:
Martin DONADIEU
2026-01-07 21:52:11 +02:00
committed by GitHub
parent 11fb61a883
commit b8463b787b
+1
View File
@@ -21,6 +21,7 @@
"author": "Bohdan Triapitsyn",
"license": "MIT",
"scripts": {
"dev": "concurrently -n \"server,web,ui\" -c \"cyan,magenta,yellow\" \"bun run --cwd packages/web dev:server:watch\" \"bun run --cwd packages/web build:watch\" \"bun run --cwd packages/ui dev\"",
"build": "bun run --filter '*' build",
"build:web": "bun run --cwd packages/web build",
"build:ui": "bun run --cwd packages/ui build",