From 6721a06d7f690cff36f18b92a38d2505bdf88138 Mon Sep 17 00:00:00 2001 From: imbytecat Date: Sun, 18 Jan 2026 16:06:24 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E9=87=8D=E6=9E=84=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E9=85=8D=E7=BD=AE=E5=B9=B6=E7=A7=BB=E9=99=A4=E6=97=A0?= =?UTF-8?q?=E6=95=88ui=E9=85=8D=E7=BD=AE=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除 ui 配置项并重新排序任务配置以确保持久化和缓存设置正确应用。 --- turbo.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/turbo.json b/turbo.json index 25980a8..8b11b6c 100644 --- a/turbo.json +++ b/turbo.json @@ -1,6 +1,5 @@ { "$schema": "./node_modules/turbo/schema.json", - "ui": "tui", "dangerouslyDisablePackageManagerCheck": true, "tasks": { "build:compile": { @@ -10,14 +9,15 @@ "dependsOn": ["build:compile"] }, "dev": { - "persistent": true, - "cache": false + "cache": false, + "persistent": true }, "dev:tauri": { - "persistent": true, "cache": false, "dependsOn": ["build:compile"], + "persistent": true, "with": ["dev:vite"] } - } + }, + "ui": "tui" }