-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforge.config.js
More file actions
35 lines (35 loc) · 874 Bytes
/
forge.config.js
File metadata and controls
35 lines (35 loc) · 874 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
module.exports = {
hooks: {
generateAssets: require('./tools/generateAssets')
},
packagerConfig: {
name: 'Electron Demo',
executableName: 'electron-demo',
asar: true,
// icon: path.resolve(__dirname, 'assets', 'icons', 'fiddle'),
// TODO: FIXME?
// ignore: [
// /^\/\.vscode\//,
// /^\/tools\//
// ],
// appBundleId: 'com.electron.fiddle',
// appCategoryType: 'public.app-category.developer-tools',
protocols: [{
name: 'Electron Demo Launch Protocol',
schemes: ['electron-demo']
}],
win32metadata: {
CompanyName: 'Electron Community',
OriginalFilename: 'Electron Fiddle',
},
osxSign: {
identity: 'Developer ID Application: Felix Rieseberg (LT94ZKYDCJ)'
}
},
makers: [
{
name: '@electron-forge/maker-zip',
platforms: ['darwin']
},
],
};