-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforge.config.ts
174 lines (166 loc) · 5.56 KB
/
forge.config.ts
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
import type { ForgeConfig } from "@electron-forge/shared-types";
import { MakerSquirrel } from "@electron-forge/maker-squirrel";
import { MakerDeb } from "@electron-forge/maker-deb";
import { MakerDMG } from "@electron-forge/maker-dmg";
import { VitePlugin } from "@electron-forge/plugin-vite";
import { FusesPlugin } from "@electron-forge/plugin-fuses";
import { FuseV1Options, FuseVersion } from "@electron/fuses";
import { exec } from "child_process";
import path from "path";
import os from "os";
import { PublisherGitHubConfig } from "@electron-forge/publisher-github";
// PS: app doesn't launch from shortcut on windows when packaged with squirrel and version set to 0.0.0
const config: ForgeConfig = {
packagerConfig: {
asar: false,
// this must be used because it breaks on ubuntu
executableName:
os.platform() === "linux" ? "shutdown-scheduler" : undefined,
// osxSign: {},
icon: path.join(process.cwd(), "public", "assets", "icon"), // no file extension required
// icon: "/icon.icns", // no file extension required
},
rebuildConfig: {},
makers: [
new MakerSquirrel({
setupIcon: path.join(process.cwd(), "public", "assets", "icon.ico"),
iconUrl:
"https://raw.githubusercontent.com/hichemfantar/ShutdownScheduler/main/public/assets/icon.ico",
}),
// new MakerZIP({}, ["darwin"]),
// new MakerRpm({}),
new MakerDeb({
options: {
icon: path.join(process.cwd(), "public", "assets", "icon.png"),
},
}),
new MakerDMG({
// https://github.com/electron/forge/issues/3712
appPath: "",
icon: path.join(process.cwd(), "public", "assets", "icon.icns"),
background: path.join(
process.cwd(),
"public",
"assets",
"transparent.png"
),
additionalDMGOptions: {
window: {
size: {
width: 658,
height: 498,
},
},
},
}),
],
hooks: {
// generateAssets: async (forgeConfig, resources) => {
// console.log("generateAssets hook");
// console.log(forgeConfig);
// console.log(resources);
// },
postPackage: async (forgeConfig, options) => {
console.info("Packages built at:", options.outputPaths);
const appPath = path.join(
options.outputPaths[0],
"Shutdown Scheduler.app"
);
// due to a bug with forgeConfig, i have to resign the app manually
// https://github.com/electron/forge/issues/3754
// Function to run a shell command
const runCommand = (command: string) => {
return new Promise((resolve, reject) => {
exec(command, (error, stdout, stderr) => {
if (error) {
reject({ error, stderr });
} else {
resolve(stdout);
}
});
});
};
if (os.platform() === "darwin") {
try {
// Run the codesign verification command
await runCommand(
`codesign --verify --deep --strict --verbose=2 "${appPath}"`
);
console.info("Codesign verification succeeded.");
} catch (verificationError) {
console.error(
"Codesign verification failed:",
verificationError.stderr
);
// Attempt to re-sign the application if verification fails
try {
console.info("Attempting to re-sign the application...");
await runCommand(`codesign --force --deep --sign - "${appPath}"`);
console.info("Re-signing succeeded.");
// Re-run the verification after re-signing
await runCommand(
`codesign --verify --deep --strict --verbose=2 "${appPath}"`
);
console.info("Re-verification succeeded after re-signing.");
} catch (signingError) {
console.error("Re-signing failed:", signingError.stderr);
throw new Error("Re-signing failed.");
}
}
}
},
// preMake: async () => {
// console.log("preMake hook");
// },
},
publishers: [
{
name: "@electron-forge/publisher-github",
config: {
repository: {
owner: "hichemfantar",
name: "ShutdownScheduler",
},
prerelease: true,
draft: true,
} as PublisherGitHubConfig,
},
],
plugins: [
new VitePlugin({
// `build` can specify multiple entry builds, which can be Main process, Preload scripts, Worker process, etc.
// If you are familiar with Vite configuration, it will look really familiar.
build: [
{
// `entry` is just an alias for `build.lib.entry` in the corresponding file of `config`.
entry: "src/main.ts",
config: "vite.main.config.ts",
target: "main",
},
{
entry: "src/preload.ts",
config: "vite.preload.config.ts",
target: "preload",
},
],
renderer: [
{
name: "main_window",
config: "vite.renderer.config.ts",
},
],
}),
// Fuses are used to enable/disable various Electron functionality
// at package time, before code signing the application
new FusesPlugin({
version: FuseVersion.V1,
[FuseV1Options.RunAsNode]: false,
[FuseV1Options.EnableCookieEncryption]: true,
[FuseV1Options.EnableNodeOptionsEnvironmentVariable]: false,
[FuseV1Options.EnableNodeCliInspectArguments]: false,
[FuseV1Options.EnableEmbeddedAsarIntegrityValidation]: true,
[FuseV1Options.OnlyLoadAppFromAsar]: false,
}),
],
};
export default config;