-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.yml
More file actions
69 lines (60 loc) · 1.24 KB
/
electron-builder.yml
File metadata and controls
69 lines (60 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
60
61
62
63
64
65
66
67
68
69
appId: com.exptech.es-net-wave
productName: ES-Net-Wave
copyright: Copyright © 2026 ExpTech Studio
directories:
output: dist
extraMetadata:
main: ./dist/main.js
files:
- dist/main.js
- dist/js/**/*
- dist/ts/**/*
- src/view/**/*
- src/css/**/*
- package.json
- node_modules/electron-updater/**/*
- "!tsconfig*.json"
- "!*.md"
- "!package-lock.json"
- "!dist/builder-*"
- "!dist/win-unpacked/**/*"
compression: maximum
asar: true
artifactName: ${productName}-${version}-${os}-${arch}.${ext}
afterPack: scripts/afterPack.js
win:
target:
- target: nsis
arch:
- x64
- ia32
icon: ./app.ico
verifyUpdateCodeSignature: false
nsis:
perMachine: false
allowToChangeInstallationDirectory: false
deleteAppDataOnUninstall: false
mac:
category: public.app-category.productivity
icon: ./app.png
hardenedRuntime: true
target:
- target: dmg
arch:
- arm64
- x64
- target: zip
arch:
- arm64
- x64
gatekeeperAssess: false
entitlements: ./assets/entitlements.mac.plist
entitlementsInherit: ./assets/entitlements.mac.plist
linux:
category: Development
icon: ./app.png
target:
- target: AppImage
arch:
- x64
- arm64