-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.yml
More file actions
59 lines (49 loc) · 1.24 KB
/
electron-builder.yml
File metadata and controls
59 lines (49 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
appId: app.baander.desktop
productName: "Baander"
# Displayed in app metadata and installers
copyright: "© 2025 Martin Christiansen"
afterPack: "electron/build/afterPack.cjs"
directories:
output: dist/electron/release
buildResources: electron/build
files:
- from: "electron/dist-electron/renderer"
to: "."
- from: "electron/dist-electron/main"
to: "."
- from: "electron/public"
to: "public"
- from: "electron/dist-electron/preload"
to: "."
- package.json
extraResources:
- from: "electron/public/dsp"
to: "dsp"
- from: "electron/public/audio-worklets"
to: "audio-worklets"
extraMetadata:
main: index.js
win:
target:
- nsis
- zip
icon: electron/build/app-icons/icon.ico
nsis:
oneClick: false # show wizard UI
perMachine: false # set to true to default to "Install for all users"
allowToChangeInstallationDirectory: true
createDesktopShortcut: true
createStartMenuShortcut: true
artifactName: "${name}-${version}-Setup.${ext}"
displayLanguageSelector: false
deleteAppDataOnUninstall: true
mac:
target:
- dmg
- zip
icon: electron/build/app-icons/icon.icns
linux:
target:
- AppImage
- deb
icon: electron/build/app-icons/icon.png