generated from tacxtv/oh_mine_launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.json5
More file actions
50 lines (50 loc) · 1 KB
/
electron-builder.json5
File metadata and controls
50 lines (50 loc) · 1 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
/**
* @see https://www.electron.build/configuration/configuration
*/
{
appId: 'fr.tacxtv.miratopia-launcher',
productName: 'Miratopia Launcher',
asar: true,
compression: 'maximum',
publish: {
provider: 'github',
},
directories: {
output: 'release/${version}',
},
files: ['.output/**/*', 'dist-electron'],
// "mac": {
// "artifactName": "${productName}_${version}.${ext}",
// "target": [
// "dmg"
// ]
// },
linux: {
target: [
'AppImage',
// "snap"
],
icon: 'public/logo.png',
category: 'Utility',
executableName: 'miratopia-launcher',
},
snap: {
artifactName: 'miratopia-launcher-${version}_${arch}.snap',
},
win: {
icon: 'public/logo.ico',
target: [
{
target: 'nsis',
arch: ['x64'],
},
],
artifactName: '${productName}_${version}.${ext}',
},
nsis: {
oneClick: true,
perMachine: false,
allowToChangeInstallationDirectory: false,
deleteAppDataOnUninstall: false,
},
}