build: 修改依赖安装步骤,移除 electron-app-universal-protocol-client 直接安装,改为通过 devDependencies 安装

This commit is contained in:
Elysia
2026-01-18 00:18:00 +08:00
parent 5fd1b75309
commit c342be45c2
2 changed files with 2 additions and 2 deletions

View File

@@ -45,7 +45,8 @@ jobs:
- name: Install Dependencies - name: Install Dependencies
run: | run: |
npm install --build-from-source=electron-app-universal-protocol-client npm install
npm install -D electron-app-universal-protocol-client
- name: Build Release Files - name: Build Release Files
run: npm run build run: npm run build

View File

@@ -29,7 +29,6 @@
"@dotenvx/dotenvx": "^1.51.4", "@dotenvx/dotenvx": "^1.51.4",
"@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue": "^5.0.4",
"electron": "^39.2.7", "electron": "^39.2.7",
"electron-app-universal-protocol-client": "^2.1.1",
"electron-builder": "^24.13.3", "electron-builder": "^24.13.3",
"typescript": "^5.4.2", "typescript": "^5.4.2",
"vite": "^5.1.5", "vite": "^5.1.5",