From 2835df69c0b7bf624e81300f7add87d0529708da Mon Sep 17 00:00:00 2001 From: RevIQ Date: Thu, 8 Jan 2026 08:03:01 +0800 Subject: [PATCH] Rename build:watch to build:watch:packages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Only watches and builds packages in ./packages/*, excluding apps. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- devenv.nix | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/devenv.nix b/devenv.nix index 1f11706..eaf6b4a 100644 --- a/devenv.nix +++ b/devenv.nix @@ -16,6 +16,6 @@ processes = { dev.exec = "bun run dev"; - build-watch.exec = "bun run build:watch"; + build-watch.exec = "bun run build:watch:packages"; }; } diff --git a/package.json b/package.json index 1d04629..57d5d97 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "scripts": { "dev": "turbo dev", "build": "turbo build", - "build:watch": "turbo build --watch", + "build:watch:packages": "turbo build --watch --filter=./packages/*", "lint": "biome check", "lint:fix": "biome check --write --unsafe", "typecheck": "turbo typecheck",