From c6380fff901b4a78fec9d40df6338a6bfcbb78d8 Mon Sep 17 00:00:00 2001 From: RevIQ Date: Thu, 8 Jan 2026 08:01:13 +0800 Subject: [PATCH] Add devenv processes for dev server and build:watch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add build:watch script to package.json (turbo build --watch) - Configure devenv processes: - dev: runs turbo dev server - build-watch: runs turbo build in watch mode - Run with `devenv up` to start all processes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- devenv.nix | 3 ++- package.json | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/devenv.nix b/devenv.nix index 3d127d0..1f11706 100644 --- a/devenv.nix +++ b/devenv.nix @@ -15,6 +15,7 @@ }; processes = { - dashboard.exec = "bun run --filter @publisher/dashboard dev"; + dev.exec = "bun run dev"; + build-watch.exec = "bun run build:watch"; }; } diff --git a/package.json b/package.json index 13a1674..1d04629 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "scripts": { "dev": "turbo dev", "build": "turbo build", + "build:watch": "turbo build --watch", "lint": "biome check", "lint:fix": "biome check --write --unsafe", "typecheck": "turbo typecheck",