-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforge.config.js
42 lines (42 loc) · 1.28 KB
/
forge.config.js
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
// contains certificate password, not on github for obvious reasons :)
const {certificateFile, certificatePassword} = require("./certconfig.js")
module.exports = {
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"loadingGif": "loading.gif",
"setupIcon": "icon.ico",
"iconUrl": "https://github.com/HexCodeFFF/aidatasetfromvideo/blob/master/icon.ico?raw=true",
"remoteReleases": "https://github.com/HexCodeFFF/aidatasetfromvideo",
certificateFile: certificateFile,
certificatePassword: certificatePassword
}
}
],
"packagerConfig": {
"icon": "icon.ico",
"ignore": [
"\\.github",
"\\.idea",
"datasets-\\d+",
"dataset-combined-\\d+",
"out",
"screenshots",
"certconfig\\.js",
"codeSignCert\\.pfx"
]
},
"publishers": [
{
"name": "@electron-forge/publisher-github",
"config": {
"repository": {
"owner": "HexCodeFFF",
"name": "captionthing"
},
"prerelease": true
}
}
]
}