refactor: rename compile:mac/win to compile:darwin/windows to match Bun target names

This commit is contained in:
2026-02-08 23:39:30 +08:00
parent b149cc5dc0
commit a585069cdc
3 changed files with 9 additions and 9 deletions

View File

@@ -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",