Skip to content

Commit

Permalink
v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
isaxk committed Aug 2, 2024
1 parent 8414fe9 commit 45b43e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: pnpm install

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

- name: Build electron
run: ls dist
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"pack": "electron-builder --win --x64 && electron-builder --mac --universal",
"pack:win": "electron-builder --win --x64",
"pack:mac": " electron-builder --mac --universal",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && npm run pack:win",
"build:mac": "npm run build && npm run pack:mac"
"build:win": "npm run build && npm run pack",
"build:mac": "npm run build && npm run pack"
},
"dependencies": {
"@cliqz/adblocker-electron": "^1.30.0",
Expand Down

0 comments on commit 45b43e4

Please sign in to comment.