Skip to content

Commit

Permalink
v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
isaxk committed Aug 2, 2024
1 parent eab4d13 commit 8325c65
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4,962 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,12 @@ jobs:
with:
node-version: 20.12.2

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Install Dependencies
run: pnpm install
run: npm install

- name: Build electron
run: pnpm build && pnpm pack:win && pnpm pack:mac
run: npm build && npm pack:win && npm pack:mac

- name: Build electron
run: ls dist
Expand Down
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@


{
"name": "ytdesk",
"productName": "YT Desk",
"version": "0.2.2",
"version": "0.2.2",
"description": "An Electron application with Svelte and TypeScript",
"main": "./out/main/index.js",
"author": "example.com",
Expand All @@ -17,12 +15,12 @@
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"pack:win": "electron-builder --win --x64",
"pack:mac": " electron-builder --mac --universal",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && npm run pack",
"build:mac": "npm run build && npm run pack"
"build:mac": "npm run build && npm run pack:mac"
},
"dependencies": {
"@cliqz/adblocker-electron": "^1.30.0",
Expand All @@ -32,6 +30,7 @@
"@melloware/coloris": "^0.24.0",
"@xhayper/discord-rpc": "^1.1.2",
"bits-ui": "^0.21.12",
"discord-api-types": "^0.37.93",
"discord-rich-presence": "^0.0.8",
"electron-json-config": "^2.0.0-beta",
"electron-store": "^10.0.0",
Expand Down
Loading

0 comments on commit 8325c65

Please sign in to comment.