-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforge.config.ts
More file actions
79 lines (69 loc) · 2.06 KB
/
forge.config.ts
File metadata and controls
79 lines (69 loc) · 2.06 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
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
import os from 'os';
import path from 'path';
import type { ForgeConfig } from '@electron-forge/shared-types';
import { MakerSquirrel } from '@electron-forge/maker-squirrel';
import { MakerZIP } from '@electron-forge/maker-zip';
import { MakerDeb } from '@electron-forge/maker-deb';
import { WebpackPlugin } from '@electron-forge/plugin-webpack';
import { mainConfig } from './webpack.main.config';
import { rendererConfig } from './webpack.renderer.config';
import { author, version } from './package.json';
const getIconPath = (fileName: string) => (
path.join(__dirname, 'assets/favicons/default/icons', fileName)
);
const getIconType = (): string => {
const platform = os.platform();
switch (platform) {
case 'darwin':
return getIconPath('mac/icon.icns');
case 'win32':
return getIconPath('win/icon.ico');
default:
return getIconPath('png/128x128.png');
}
};
const config: ForgeConfig = {
packagerConfig: {
appCopyright: author.name,
appVersion: version,
icon: getIconType(),
},
rebuildConfig: {},
makers: [new MakerSquirrel({}), new MakerZIP({}, ['darwin']), new MakerDeb({})],
plugins: [
new WebpackPlugin({
mainConfig,
packageSourceMaps: true,
renderer: {
config: rendererConfig,
entryPoints: [
{
html: './frontend/chronography.html',
js: './frontend/views/chronography/index.ts',
name: 'chronography',
preload: {
js: './frontend/preload.ts',
},
},
{
html: './frontend/append-activity.html',
js: './frontend/views/append-activity/index.ts',
name: 'append_activity',
preload: {
js: './frontend/preload.ts',
},
},
{
html: './frontend/menubar.html',
js: './frontend/views/menubar/index.ts',
name: 'menubar',
preload: {
js: './frontend/preload.ts',
},
},
],
},
}),
],
};
export default config;