From 4e61155e5ee47c949353df33d6a297269d265b77 Mon Sep 17 00:00:00 2001 From: Jiang Bohan Date: Thu, 5 Feb 2026 16:16:33 +0800 Subject: [PATCH] chore(turbo): add src as global dependency for cache invalidation The desktop app imports from the root src directory, but turbo wasn't tracking those files for cache hash calculation. This caused CI builds to use stale hashes when types changed in the root src directory. Co-Authored-By: Claude Opus 4.5 --- turbo.json | 1 + 1 file changed, 1 insertion(+) diff --git a/turbo.json b/turbo.json index d91a416f..22c06f3b 100644 --- a/turbo.json +++ b/turbo.json @@ -1,5 +1,6 @@ { "$schema": "https://turbo.build/schema.json", + "globalDependencies": ["src/**"], "tasks": { "build": { "dependsOn": ["^build"],