forked from luuxis/Selvania-Launcher
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.js
55 lines (53 loc) · 1.5 KB
/
build.js
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
const builder = require('electron-builder')
const { preductname } = require('./package.json')
builder.build({
config: {
generateUpdatesFilesForAllChannels: true,
appId: preductname,
productName: preductname,
artifactName: "${productName}-${os}-${arch}.${ext}",
files: ["src/**/*", "package.json", "LICENSE.md"],
directories: { "output": "dist" },
compression: 'maximum',
asar: true,
publish: [{
provider: "github",
releaseType: 'release',
}],
win: {
icon: "./src/assets/images/icon.ico",
target: [{
target: "nsis",
arch: ["x64"]
}],
},
nsis: {
oneClick: true,
allowToChangeInstallationDirectory: false,
createDesktopShortcut: true,
runAfterFinish: true
},
mac: {
icon: "./src/assets/images/icon.icns",
category: "public.app-category.games",
target: [{
target: "dmg",
arch: ["x64", "arm64"]
}]
},
linux: {
icon: "./src/assets/images/icon.png",
target: [{
target: "AppImage",
arch: ["x64"]
}, {
target: "tar.gz",
arch: ["x64"]
}]
}
}
}).then(() => {
console.log('le build est terminé')
}).catch(err => {
console.error('Error during build!', err)
})