-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathforge.config.js
More file actions
41 lines (41 loc) · 989 Bytes
/
Copy pathforge.config.js
File metadata and controls
41 lines (41 loc) · 989 Bytes
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
module.exports = {
packagerConfig: {
name: 'DeskX',
executableName: 'DeskX',
icon: './assets/DeskXLogo',
// Use asar but unpack native modules so they load correctly
asar: {
unpack: '**/{koffi,node_modules/koffi}/**',
},
// Windows-specific metadata
win32metadata: {
CompanyName: 'DeskX',
ProductName: 'DeskX Wallpaper Engine',
FileDescription: 'Desktop Wallpaper Manager',
OriginalFilename: 'DeskX.exe',
},
// Don't include dev files in the package
ignore: [
/^\/\.git/,
/^\/\.gitignore/,
/^\/generate-icon\.js/,
/^\/implementation_plan\.md/,
/^\/\.gemini/,
],
},
makers: [
{
name: '@electron-forge/maker-squirrel',
config: {
name: 'DeskX',
setupExe: 'DeskX-Setup.exe',
setupIcon: './assets/DeskXLogo.ico',
noMsi: true,
},
},
{
name: '@electron-forge/maker-zip',
platforms: ['win32'],
},
],
};