-
Notifications
You must be signed in to change notification settings - Fork 6
/
electron-builder.yml
46 lines (40 loc) · 1.03 KB
/
electron-builder.yml
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
appId: 'github.com/EdurtIO/angular-electron-admin'
artifactName: ${name}-${version}-${os}-${arch}.${ext}
productName: 'AEA'
publish: { provider: github, releaseType: draft, vPrefixedTagName: true }
forceCodeSigning: false
directories:
output: ./release
files:
- '**/*'
- '!**/*.ts'
- '!scripts'
- '!src'
- '!node_modules/rxjs/{_esm5,_esm2015,src,bundles}'
compression: normal
asar: false
mac:
icon: ./src/shared/assets/icons
category: public.app-category.productivity
darkModeSupport: true
target:
- { target: dmg }
dmg:
icon: ./src/shared/assets/icons
iconSize: 128
contents:
- { x: 380, y: 240, type: link, path: /Applications }
- { x: 122, y: 240, type: file }
linux:
icon: ./src/shared/assets/icons/favicon.png
target:
- { target: AppImage }
win:
artifactName: ${name}-${version}-windows-${arch}.${ext}
icon: ./src/shared/assets/icons/favicon.ico
target:
- { target: nsis }
nsis:
artifactName: ${name}-${version}-windows-${arch}-nsis-installer.${ext}
oneClick: false
perMachine: false