docs(agents): 同步多架构构建与打包命令说明

This commit is contained in:
2026-02-15 23:32:32 +08:00
parent 8245abe217
commit 275c8e4795
3 changed files with 34 additions and 15 deletions

View File

@@ -26,9 +26,14 @@ bun db:studio # Drizzle Studio GUI
# Build
bun build # Production build → .output/
bun compile # Compile to standalone binary (current platform, depends on build)
bun compile:linux # Compile for Linux x64
bun compile:mac # Compile for macOS arm64
bun compile:win # Compile for Windows x64
bun compile:darwin # Compile for macOS (default: arm64)
bun compile:darwin:arm64 # Compile for macOS arm64
bun compile:darwin:x64 # Compile for macOS x64
bun compile:linux # Compile for Linux (default: x64)
bun compile:linux:arm64 # Compile for Linux arm64
bun compile:linux:x64 # Compile for Linux x64
bun compile:windows # Compile for Windows (default: x64)
bun compile:windows:x64 # Compile for Windows x64
# Code Quality
bun fix # Biome auto-fix