From a40a2e8d121b1b4ebf964b8e1495002edcad88b5 Mon Sep 17 00:00:00 2001 From: LyAhn Date: Sun, 28 Jun 2026 21:13:12 +0100 Subject: [PATCH] chore: split production build into CPU and CUDA scripts --- CLAUDE.md | 7 +++++-- README.md | 7 +++++-- package.json | 1 - 3 files changed, 10 insertions(+), 5 deletions(-) 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",