chore(desktop): 简化构建和开发脚本

This commit is contained in:
2026-02-07 17:16:32 +08:00
parent 41e79449ce
commit 989d8973f5

View File

@@ -4,11 +4,8 @@
"private": true, "private": true,
"type": "module", "type": "module",
"scripts": { "scripts": {
"build": "electrobun build --env=canary", "build": "electrobun build --env=stable --targets=all",
"build:all": "electrobun build --env=canary --targets=all", "dev": "electrobun build && electrobun dev",
"build:stable": "electrobun build --env=stable",
"build:stable:all": "electrobun build --env=stable --targets=all",
"dev": "electrobun dev",
"fix": "biome check --write", "fix": "biome check --write",
"typecheck": "tsc --noEmit" "typecheck": "tsc --noEmit"
}, },