diff --git a/CLAUDE.md b/CLAUDE.md index b5786c8..afe615e 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -15,8 +15,11 @@ pnpm dev:app # Frontend only (no Tauri window) pnpm dev:vite -# Production build -pnpm build:app +# Production build (CPU) +pnpm build:app:cpu + +# Production build (CUDA / GPU-accelerated) +pnpm build:app:cuda # Type-check frontend pnpm build:vite diff --git a/README.md b/README.md index 6fbed01..b559491 100644 --- a/README.md +++ b/README.md @@ -109,8 +109,11 @@ pnpm dev:app # Frontend only pnpm dev:vite -# Production build -pnpm build:app +# Production build (CPU) +pnpm build:app:cpu + +# Production build (CUDA / GPU-accelerated) +pnpm build:app:cuda # Type-check the frontend pnpm build:vite diff --git a/package.json b/package.json index e87a8af..fc358f8 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,6 @@ "license": "MIT", "type": "module", "scripts": { - "build:app": "tauri build", "build:app:cpu": "tauri build -- --no-default-features", "build:app:cuda": "tauri build --config src-tauri/tauri.cuda.conf.json", "build:vite": "tsc && vite build",