-
Notifications
You must be signed in to change notification settings - Fork 7
/
forge.config.js
131 lines (119 loc) · 3.32 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/* tslint:disable */
const path = require('path');
const fs = require('fs');
const iconDir = path.join(__dirname, 'static/img');
const version = require('./package.json').version;
if (process.env['WINDOWS_CODESIGN_FILE']) {
const certPath = path.join(__dirname, 'win-certificate.pfx');
const certExists = fs.existsSync(certPath);
if (certExists) {
process.env['WINDOWS_CODESIGN_FILE'] = certPath;
}
}
const options = {
hooks: {
generateAssets: require('./tools/generateAssets')
},
packagerConfig: {
name: 'Sleuth',
executableName: process.platform === 'linux' ? 'sleuth' : 'Sleuth',
icon: './static/img/sleuth-icon',
appBundleId: 'com.felixrieseberg.sleuth',
appCategoryType: 'public.app-category.developer-tools',
asar: {
unpackDir: '**/cachetool'
},
osxSign: {
identity: 'Developer ID Application: Felix Rieseberg (LT94ZKYDCJ)',
hardenedRuntime: true,
'gatekeeper-assess': true,
'entitlements': 'static/entitlements.plist',
'entitlements-inherit': 'static/entitlements.plist',
'signature-flags': 'library',
requirements: path.resolve(__dirname, 'tools', 'certs', 'designated-requirements.rqset')
},
ignore: [
/^\/\.vscode/,
/^\/catapult/,
/^\/coverage/,
/^\/test/,
/^\/tools/,
/^\/src\//,
/^\/static\/catapult-overrides/,
/^\/static\/img\/sleuth/,
/\/test\//,
/\/[A-Za-z0-0]+\.md$/,
/package-lock.json/,
/react.development.js/,
],
extendInfo: './static/extend.plist',
win32metadata: {
ProductName: 'Sleuth',
CompanyName: 'Felix Rieseberg'
}
},
makers: [
{
name: '@electron-forge/maker-squirrel',
platforms: ['win32'],
config: (arch) => {
return {
name: 'sleuth',
authors: 'Felix Rieseberg',
exe: 'sleuth.exe',
noMsi: true,
setupExe: `sleuth-${version}-${arch}-setup.exe`,
setupIcon: path.resolve(iconDir, 'sleuth-icon.ico'),
certificateFile: process.env['WINDOWS_CODESIGN_FILE'],
certificatePassword: process.env['WINDOWS_CODESIGN_PASSWORD'],
}
}
},
{
name: "@electron-forge/maker-zip",
platforms: ["darwin"]
},
{
name: "@electron-forge/maker-deb",
platforms: ["linux"]
},
{
name: "@electron-forge/maker-rpm",
platforms: ["linux"]
}
],
publishers: [
{
name: '@electron-forge/publisher-github',
config: {
repository: {
owner: 'felixrieseberg',
name: 'sleuth'
},
prerelease: false
}
}
]
};
function notarizeMaybe() {
if (process.platform !== 'darwin') {
return;
}
if (!process.env.CI && !process.env.APPLE_ID || !process.env.APPLE_ID_PASSWORD) {
console.log(`Not in CI, skipping notarization`);
return;
}
if (!process.env.APPLE_ID || !process.env.APPLE_ID_PASSWORD) {
console.warn('Should be notarizing, but environment variables APPLE_ID or APPLE_ID_PASSWORD are missing!');
return;
}
options.packagerConfig.osxNotarize = {
appBundleId: 'com.felixrieseberg.sleuth',
appleId: process.env.APPLE_ID,
appleIdPassword: process.env.APPLE_ID_PASSWORD,
ascProvider: 'LT94ZKYDCJ'
}
console.log(`Notarization enabled`);
}
notarizeMaybe()
module.exports = options;