From a585069cdcd2cee039fa5a5ace390a785cd7b4d4 Mon Sep 17 00:00:00 2001 From: imbytecat Date: Sun, 8 Feb 2026 23:39:30 +0800 Subject: [PATCH] refactor: rename compile:mac/win to compile:darwin/windows to match Bun target names --- apps/desktop/turbo.json | 4 ++-- apps/server/package.json | 4 ++-- apps/server/turbo.json | 10 +++++----- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/apps/desktop/turbo.json b/apps/desktop/turbo.json index a68e583..40e1d50 100644 --- a/apps/desktop/turbo.json +++ b/apps/desktop/turbo.json @@ -14,11 +14,11 @@ "outputs": ["dist/**"] }, "dist:mac": { - "dependsOn": ["build", "@furtherverse/server#compile:mac"], + "dependsOn": ["build", "@furtherverse/server#compile:darwin"], "outputs": ["dist/**"] }, "dist:win": { - "dependsOn": ["build", "@furtherverse/server#compile:win"], + "dependsOn": ["build", "@furtherverse/server#compile:windows"], "outputs": ["dist/**"] } } diff --git a/apps/server/package.json b/apps/server/package.json index 80277df..15abcac 100644 --- a/apps/server/package.json +++ b/apps/server/package.json @@ -6,9 +6,9 @@ "scripts": { "build": "vite build", "compile": "bun compile.ts", + "compile:darwin": "bun compile.ts --target bun-darwin-arm64", "compile:linux": "bun compile.ts --target bun-linux-x64", - "compile:mac": "bun compile.ts --target bun-darwin-arm64", - "compile:win": "bun compile.ts --target bun-windows-x64", + "compile:windows": "bun compile.ts --target bun-windows-x64", "db:generate": "drizzle-kit generate", "db:migrate": "drizzle-kit migrate", "db:push": "drizzle-kit push", diff --git a/apps/server/turbo.json b/apps/server/turbo.json index c5d5056..c49c3ce 100644 --- a/apps/server/turbo.json +++ b/apps/server/turbo.json @@ -10,15 +10,15 @@ "dependsOn": ["build"], "outputs": ["out/**"] }, + "compile:darwin": { + "dependsOn": ["build"], + "outputs": ["out/**"] + }, "compile:linux": { "dependsOn": ["build"], "outputs": ["out/**"] }, - "compile:mac": { - "dependsOn": ["build"], - "outputs": ["out/**"] - }, - "compile:win": { + "compile:windows": { "dependsOn": ["build"], "outputs": ["out/**"] }