-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder.stg.json
58 lines (58 loc) · 1.28 KB
/
electron-builder.stg.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
{
"productName": "electron-vue-ts-stg",
"appId": "com.mydomain.electron-vue-ts",
"copyright": "Copyright © 2019 com.mydomain.electron-vue-ts",
"artifactName": "electron-vue-ts-stg-${version}.${ext}",
"directories": {
"output": "dist-stg",
"app": "./"
},
"files": [
"app/**/*",
"!**/node_modules/**/*",
"**/*.map"
],
"asarUnpack": "**/*.node",
"publish": [
{
"provider": "generic",
"url": "https://electron-vue-ts-stg.mydomain.com/"
}
],
"releaseInfo": {
"releaseName": "",
"releaseNotes": "1、electron-vue-ts-stg"
},
"dmg": {
"sign": false,
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"icon": "icons/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"identity": "your appId identity",
"entitlements": "./entitlements.mac.plist",
"entitlementsInherit": "./entitlements.mac.plist",
"category": "public.app-category.social-networking",
"target": [
"dmg",
"zip"
],
"minimumSystemVersion": "10.9.0"
},
"afterSign": "./notarization-stg.js",
"afterAllArtifactBuild": "./archiveZIP.js"
}