From bba08a43305d07433d2d4a59364d6ae370f1d6a1 Mon Sep 17 00:00:00 2001 From: RevIQ Date: Thu, 8 Jan 2026 08:04:23 +0800 Subject: [PATCH] Fix turbo watch command syntax MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use `turbo watch build` instead of `turbo build --watch`. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 57d5d97..3ddfa16 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "scripts": { "dev": "turbo dev", "build": "turbo build", - "build:watch:packages": "turbo build --watch --filter=./packages/*", + "build:watch:packages": "turbo watch build --filter=./packages/*", "lint": "biome check", "lint:fix": "biome check --write --unsafe", "typecheck": "turbo typecheck",