Compare commits

...

2 Commits

Author SHA1 Message Date
9d0e9a6aac chore(desktop): 添加 .gitignore 和多平台构建脚本 2026-02-07 06:29:08 +08:00
f758fd5947 chore: 更新 bun.lock 锁文件 2026-02-07 06:15:52 +08:00
3 changed files with 9 additions and 1 deletions

6
apps/desktop/.gitignore vendored Normal file
View File

@@ -0,0 +1,6 @@
# Dependencies
node_modules/
# Electrobun build output
build/
artifacts/

View File

@@ -5,7 +5,9 @@
"type": "module", "type": "module",
"scripts": { "scripts": {
"build": "electrobun build --env=canary", "build": "electrobun build --env=canary",
"build:all": "electrobun build --env=canary --targets=all",
"build:stable": "electrobun build --env=stable", "build:stable": "electrobun build --env=stable",
"build:stable:all": "electrobun build --env=stable --targets=all",
"dev": "electrobun dev", "dev": "electrobun dev",
"fix": "biome check --write", "fix": "biome check --write",
"typecheck": "tsc --noEmit" "typecheck": "tsc --noEmit"

View File

@@ -7,7 +7,7 @@
"devDependencies": { "devDependencies": {
"@biomejs/biome": "^2.3.14", "@biomejs/biome": "^2.3.14",
"turbo": "^2.8.3", "turbo": "^2.8.3",
"typescript": "catalog:", "typescript": "^5.9.3",
}, },
}, },
"apps/desktop": { "apps/desktop": {