-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.yml
More file actions
54 lines (46 loc) · 1.21 KB
/
electron-builder.yml
File metadata and controls
54 lines (46 loc) · 1.21 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
appId: com.worldlinkstudio.mpcsample
productName: MPC Sample
electronVersion: "42.3.0"
directories:
output: release
files:
- "out/**/*"
- "package.json"
# The renderer is fully bundled by electron-vite and main/preload inline their
# @electron-toolkit/* devDeps, so no runtime node_modules are needed. Excluding
# them keeps app.asar small (otherwise tone/tailwind/etc. balloon it to ~300MB).
- "!node_modules/**/*"
- "!public/kits"
- "!src/**/*"
- "!electron/**/*"
- "!electron.vite.config.{js,ts,mjs,cjs}"
- "!vite.config.{js,ts,mjs,cjs}"
- "!tsconfig*.json"
- "!{.eslintcache,eslint.config.mjs}"
- "!{.env,.env.*,.npmrc}"
# Override package.json main for the packaged app
extraMetadata:
main: out/main/index.js
asar: true
npmRebuild: false
mac:
icon: public/favicon/android-chrome-512x512.png
target:
- dmg
- zip
category: public.app-category.music
identity: null
dmg:
artifactName: ${productName}-${version}.${ext}
win:
icon: public/favicon/favicon.ico
target:
- nsis
- zip
nsis:
artifactName: ${productName}-Setup-${version}.${ext}
oneClick: true
perMachine: false
createDesktopShortcut: true
createStartMenuShortcut: true
shortcutName: MPC Sample