forked from Joshix-1/Lightcord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder.yml
70 lines (69 loc) · 1.21 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
appId: com.squirrel.Lightcord.Lightcord
productName: Lightcord
remoteBuild: false
directories:
app: distApp
output: builds
# This is to get around the bug in electron-builder with not including nested node_modules.
afterPack: "scripts/afterpack.js"
win:
artifactName: ${name}-win32-${arch}.${ext}
target:
- target: zip
arch:
- ia32
- target: portable
arch:
- ia32
icon: discord.ico
publisherName: Lightcord
files:
- "**/*"
- "!**/*.ts"
- "!**/*.so"
- "!**/*.4"
- "!**/*.dylib"
- "!**/*_darwin.node"
- "!**/*_linux.node"
asarUnpack:
- "**/*.node"
- "**/*.dll"
linux:
artifactName: ${name}-linux-${arch}.${ext}
target:
- target: zip
arch:
- x64
- target: AppImage
arch:
- x64
icon: discord.png
files:
- "**/*"
- "!**/*.ts"
- "!**/*.dll"
- "!**/*.dylib"
- "!**/discord*.node"
- "**/*_linux.node"
asarUnpack:
- "**/*_linux.node"
- "**/*.so.4"
mac:
artifactName: ${name}-darwin-x64.${ext}
target:
- target: zip
arch:
- x64
icon: discord.icns
files:
- "**/*"
- "!**/*.ts"
- "!**/*.dll"
- "!**/*.so"
- "!**/*.4"
- "!**/discord*.node"
- "**/*_darwin.node"
asarUnpack:
- "**/*_darwin.node"
- "**/*.dylib"