-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathforge.config.ts
More file actions
162 lines (160 loc) · 5.53 KB
/
forge.config.ts
File metadata and controls
162 lines (160 loc) · 5.53 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
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
import type { ForgeConfig } from '@electron-forge/shared-types';
import { MakerSquirrel } from '@electron-forge/maker-squirrel';
import { MakerZIP } from '@electron-forge/maker-zip';
import { MakerDMG } from '@electron-forge/maker-dmg';
import { MakerDeb } from '@electron-forge/maker-deb';
import { MakerRpm } from '@electron-forge/maker-rpm';
import { VitePlugin } from '@electron-forge/plugin-vite';
import { FusesPlugin } from '@electron-forge/plugin-fuses';
import { FuseV1Options, FuseVersion } from '@electron/fuses';
import { PublisherGithub } from '@electron-forge/publisher-github';
const config: ForgeConfig = {
packagerConfig: {
"asar": {
"unpack": "**/node_modules/{sharp,@img}/**/*"
},
icon: './src/assets/icons/icon' // 不需要扩展名,Electron Forge会根据平台自动选择
// 不进行macOS应用签名和公证
// 架构通过命令行参数 --arch 或环境变量 npm_config_target_arch 指定
},
rebuildConfig: {},
makers: [
// Windows
new MakerSquirrel({
name: "LocalSqueeze", // 确保这是驼峰式的,没有空格
description: "Image Compression Tool", // 使用英文描述
setupIcon: './src/assets/icons/win/icon.ico',
setupExe: 'LocalSqueeze-Setup.exe',
noMsi: false,
// 添加以下配置以解决安装程序闪退问题
// 移除setupExeTemplate配置,因为它不是MakerSquirrelConfig的有效属性
// 设置安装程序的显示名称(使用英文避免编码问题)
title: "LocalSqueeze",
// 添加额外的安装程序选项
noDelta: true,
// 设置为true以在安装后自动启动应用
// 移除 skipUpdateExe 配置项,因为它不是 MakerSquirrelConfig 的有效属性
// 添加codepage配置解决中文编码问题
// 移除 codepage 配置,因为它不是 MakerSquirrelConfig 的有效属性
}),
// 添加WiX安装程序,支持选择安装路径
{
name: '@electron-forge/maker-wix',
config: {
name: "LocalSqueeze",
description: "Image Compression Tool",
manufacturer: "freeany",
icon: './src/assets/icons/win/icon.ico',
ui: {
chooseDirectory: true, // 允许用户选择安装路径
},
// 设置程序文件夹名称
programFilesFolderName: "LocalSqueeze",
// 设置快捷方式文件夹名称
shortcutFolderName: "LocalSqueeze"
},
platforms: ['win32'] // 限制只在Windows平台上运行
},
// macOS
new MakerDMG((arch: string) => {
const archSuffix = arch === 'arm64' ? '-apple-silicon' : '-intel';
return {
name: `LocalSqueeze${archSuffix}`,
icon: './src/assets/icons/icon.icns',
format: 'ULFO'
};
}, ['darwin']),
new MakerZIP({}, ['darwin']),
// Linux
new MakerDeb({
options: {
icon: './src/assets/icons/png/512x512.png',
categories: ['Utility']
}
}),
new MakerRpm({
options: {
icon: './src/assets/icons/png/512x512.png',
categories: ['Utility']
}
}),
// 为所有平台创建ZIP包
new MakerZIP({}, ['win32', 'linux'])
],
publishers: [
new PublisherGithub({
repository: {
owner: 'freeany',
name: 'LocalSqueeze'
},
prerelease: process.env.NODE_ENV !== 'production',
draft: true, // 始终发布为草稿,需要手动确认
authToken: process.env.GITHUB_TOKEN,
tagPrefix: 'v',
generateReleaseNotes: true,
// 改进的发布配置
octokitOptions: {
retry: {
doNotRetry: ['HttpError'],
retries: 3
},
throttle: {
onRateLimit: (retryAfter: number, options: any) => {
console.warn(`Request quota exhausted for request ${options.method} ${options.url}`);
if (options.request.retryCount === 0) {
return true;
}
},
onSecondaryRateLimit: (retryAfter: number, options: any) => {
console.warn(`Secondary rate limit hit for request ${options.method} ${options.url}`);
return true;
}
}
},
})
],
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]: true,
}),
{
name: "@timfish/forge-externals-plugin",
config: {
"externals": ["sharp"],
"includeDeps": true
}
},
],
};
export default config;