forked from mikepruett3/youtube-desktop
-
Notifications
You must be signed in to change notification settings - Fork 1
/
forge.config.js
50 lines (49 loc) · 1.12 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
43
44
45
46
47
48
49
50
const path = require('path');
module.exports = {
'packagerConfig': {
'asar': true,
'executableName': 'youtube-desktop',
'productName': 'YouTube Desktop',
'icon': path.resolve(__dirname, 'images', 'icon'),
},
'rebuildConfig': {},
'makers': [
{
'name': '@electron-forge/maker-squirrel',
'config': {
'iconUrl': 'https://raw.githubusercontent.com/lakto/youtube-desktop/refs/heads/main/images/YouTube.ico',
'setupIcon': './images/icon.ico'
},
},
{
'name': '@electron-forge/maker-deb',
'config': {
'options': {
'productName': 'YouTube Desktop',
'icon': path.resolve(__dirname, 'images', 'icon.png')
}
}
},
{
'name': '@electron-forge/maker-zip',
'platforms': ['darwin'],
}
],
'publishers': [
{
'name': '@electron-forge/publisher-github',
'config': {
'repository': {
'owner': 'lakto',
'name': 'youtube-desktop'
}
}
}
],
'plugins': [
{
'name': '@electron-forge/plugin-auto-unpack-natives',
'config': {},
},
],
};