-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathelectron-builder.yml
More file actions
49 lines (47 loc) · 943 Bytes
/
electron-builder.yml
File metadata and controls
49 lines (47 loc) · 943 Bytes
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
productName: MovieCast
appId: io.moviecast.desktop
artifactName: "${productName}-${os}-${arch}-${version}.${ext}"
asar: true
compression: maximum
copyright: "Copyright © 2018 MovieCast"
directories:
app: src
buildResources: resources
output: releases
forceCodeSigning: false
mac:
category: public.app-category.productivity
minimumSystemVersion: "10.12"
target: zip
linux:
target:
- AppImage
- tar.xz
nsis:
perMachine: true
oneClick: false
allowToChangeInstallationDirectory: true
nodeGypRebuild: false
npmRebuild: true
# Fixes build errors
files:
- "package.json"
- "!node_modules${/*}"
-
from: "dist/main"
-
from: "dist/renderer"
-
from: "dist/renderer-dll"
extraResources:
-
from: static
to: static
# Temp till electron-webpack is fixed
-
from: node_modules
to: node_modules
filter:
- buffer-from/**/*
- source-map-support/**/*
- source-map/**/*