Rename build:watch to build:watch:packages

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 <noreply@anthropic.com>
This commit is contained in:
RevIQ
2026-01-08 08:03:01 +08:00
parent c6380fff90
commit 2835df69c0
2 changed files with 2 additions and 2 deletions

View File

@@ -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";
};
}

View File

@@ -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",