From fc846fa24daa0a7c333a8f46f6c96f0d64de476a Mon Sep 17 00:00:00 2001 From: imbytecat Date: Wed, 21 Jan 2026 23:56:15 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E8=B0=83=E6=95=B4=E6=9E=84=E5=BB=BA?= =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E4=BE=9D=E8=B5=96=EF=BC=8C=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=BC=80=E5=8F=91=E6=9C=8D=E5=8A=A1=E5=99=A8=E6=A8=A1=E5=BC=8F?= =?UTF-8?q?=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 调整构建任务依赖,为开发环境添加服务器开发模式依赖。 --- apps/desktop/turbo.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/desktop/turbo.json b/apps/desktop/turbo.json index ce1d7c0..88f1315 100644 --- a/apps/desktop/turbo.json +++ b/apps/desktop/turbo.json @@ -2,8 +2,12 @@ "$schema": "../../node_modules/turbo/schema.json", "extends": ["//"], "tasks": { - "dev": { + "build": { "dependsOn": ["@furtherverse/server#compile"] + }, + "dev": { + "dependsOn": ["@furtherverse/server#compile"], + "with": ["@furtherverse/server#dev"] } } }