-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathforge.config.js
More file actions
45 lines (44 loc) · 1.11 KB
/
forge.config.js
File metadata and controls
45 lines (44 loc) · 1.11 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
const path = require('path')
module.exports = {
"packagerConfig": {
"icon": "./src/Icons/Terminal.ico",
//"platform": "linux" // Choices are 'darwin', 'mas', 'win32' or 'linux'
//"arch": "arm64" // Choices are ia32, x64, armv7l, arm64
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"setupIcon": "./src/Icons/Terminal.ico",
"iconURL": "https://raw.githubusercontent.com/mellobacon/Termello/master/Icons/Terminal.ico",
"name": "Termello",
"authors": "Mellobacon",
"description": "A terminal emulator made with Electron"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin",
"linux"
]
},
{
"name": "@electron-forge/maker-deb",
"platforms": [
"darwin",
"linux"
],
"config": {
"options": {
"name": "Termello",
"iconURL": "https://raw.githubusercontent.com/mellobacon/Termello/master/Icons/Terminal.ico",
}
}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
}
]
}