forked from entrylabs/entry-offline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder.json
91 lines (91 loc) · 2.53 KB
/
electron-builder.json
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"mac": {
"target": "pkg",
"category": "public.app-category.education",
"extendInfo": "build/build.plist",
"identity": "Connect Foundation (DLFUSDA3L5)",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"extraResources": [
{
"from": "validator/mac/validator.txt",
"to": ""
}
]
},
"win": {
"target": "dir",
"extraResources": [
{
"from": "validator/win/validator.exe",
"to": ""
}
]
},
"fileAssociations": [
{
"ext": "ent",
"role": "Editor",
"name": "Entry File",
"icon": "icon.icns"
}
],
"files": [
"src/main/static",
"src/main/views/WebAudioPluginTest.fail",
"src/**/*.html",
"src/renderer/bower_components",
"src/renderer/resources",
"src/main_build",
"src/renderer_build",
"src/preload_build",
"!src/main_build/hot",
"!src/renderer_build/hot",
"!src/**/*.scss",
"!node_modules/entry-hw/app/server",
"!node_modules/entry-hw/app/firmwares",
"!node_modules/entry-hw/app/modules",
"!node_modules/entry-hw/app/drivers",
"config",
{
"from": "node_modules/entry-js",
"to": "node_modules/entry-js"
},
{
"from": "node_modules/entry-tool",
"to": "node_modules/entry-tool"
}
],
"extraResources": [
{
"from": "node_modules/entry-hw/app/modules",
"to": "modules"
},
{
"from": "node_modules/entry-hw/app/firmwares",
"to": "firmwares",
"filter": ["!examples/"]
},
{
"from": "node_modules/entry-hw/app/drivers",
"to": "drivers"
},
{
"from": "node_modules/entry-js/weights",
"to": "weights"
}
],
"electronCompile": false,
"asar": true,
"asarUnpack": ["node_modules/entry-hw/**/*"],
"appId": "org.playentry.entry",
"productName": "Entry",
"afterPack": "scripts/after_pack.js",
"afterSign": "scripts/notarize_app.js",
"afterAllArtifactBuild": "scripts/notarize_installer.js",
"directories": {
"output": "dist/${productName}-${platform}-${arch}"
}
}