-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathforge.config.ts
174 lines (163 loc) · 4.68 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
/**
* Copyright (c) 2025 Bytedance, Inc. and its affiliates.
* SPDX-License-Identifier: Apache-2.0
*/
import { readdirSync } from 'node:fs';
import { readdir } from 'node:fs/promises';
import path, { resolve } from 'node:path';
import { MakerDMG } from '@electron-forge/maker-dmg';
import { MakerSquirrel } from '@electron-forge/maker-squirrel';
import { AutoUnpackNativesPlugin } from '@electron-forge/plugin-auto-unpack-natives';
import { FusesPlugin } from '@electron-forge/plugin-fuses';
import type { ForgeConfig } from '@electron-forge/shared-types';
import { FuseV1Options, FuseVersion } from '@electron/fuses';
import setLanguages from 'electron-packager-languages';
import { rimraf, rimrafSync } from 'rimraf';
import pkgs from './package.json';
const skipDevDependencies = new Set([
...Object.entries(pkgs.devDependencies || {}).map(([name]) => name),
'.vite',
]);
const keepLanguages = new Set(['en', 'en_GB', 'en-US', 'en_US']);
// const ignorePattern = new RegExp(`^/node_modules/(${[...devDependencies].join("|")})`)
// remove folders & files not to be included in the app
async function cleanSources(
buildPath,
_electronVersion,
platform,
_arch,
callback,
) {
// folders & files to be included in the app
const appItems = new Set([
'dist',
'node_modules',
'package.json',
'resources',
]);
if (platform === 'darwin') {
const frameworkResourcePath = resolve(
buildPath,
'../../Frameworks/Electron Framework.framework/Versions/A/Resources',
);
for (const file of readdirSync(frameworkResourcePath)) {
if (file.endsWith('.lproj') && !keepLanguages.has(file.split('.')[0])) {
rimrafSync(resolve(frameworkResourcePath, file));
}
}
}
// Skip devDependencies node_modules in the app
await Promise.all([
...(await readdir(buildPath).then((items) =>
items
.filter((item) => !appItems.has(item))
.map((item) => rimraf(path.join(buildPath, item))),
)),
...(await readdir(path.join(buildPath, 'node_modules')).then((items) =>
items
.filter((item) => skipDevDependencies.has(item))
.map((item) => rimraf(path.join(buildPath, 'node_modules', item))),
)),
]);
callback();
}
const noopAfterCopy = (
_buildPath,
_electronVersion,
_platform,
_arch,
callback,
) => callback();
const config: ForgeConfig = {
packagerConfig: {
name: 'UI TARS',
icon: 'resources/icon',
asar: {
// @ts-ignore
unpack: [
'**/node_modules/sharp/**/*',
'**/node_modules/@img/**/*',
'**/node_modules/mac-screen-capture-permissions/**/*',
],
},
afterCopy: [
cleanSources,
process.platform !== 'win32'
? noopAfterCopy
: setLanguages(Array.from(keepLanguages)),
],
prune: true,
executableName: 'UI-TARS',
extraResource: ['./resources/app-update.yml', './resources/report.html'],
},
rebuildConfig: {},
publishers: [
{
name: '@electron-forge/publisher-github',
config: {
repository: {
owner: 'bytedance',
name: 'ui-tars-desktop',
},
draft: true,
force: true,
},
},
],
makers: [
new MakerSquirrel({
name: 'UI-TARS',
setupIcon: 'resources/icon.ico',
}),
// @ts-expect-error - https://github.com/electron/forge/issues/3712
new MakerDMG({
overwrite: true,
background: 'static/dmg-background.png',
// icon: 'static/dmg-icon.icns',
iconSize: 160,
format: 'UDZO',
additionalDMGOptions: {
window: {
size: {
width: 660,
height: 400,
},
},
},
contents: (opts) => [
{
x: 180,
y: 170,
type: 'file',
path: opts.appPath,
},
{
x: 480,
y: 170,
type: 'link',
path: '/Applications',
},
],
}),
],
plugins: [
new AutoUnpackNativesPlugin({}),
// Fuses are used to enable/disable various Electron functionality
// at package time, before code signing the application
// https://github.com/microsoft/playwright/issues/28669#issuecomment-2268380066
...(process.env.CI === 'e2e'
? []
: [
new FusesPlugin({
version: FuseVersion.V1,
[FuseV1Options.RunAsNode]: false,
[FuseV1Options.EnableCookieEncryption]: true,
[FuseV1Options.EnableNodeOptionsEnvironmentVariable]: false,
[FuseV1Options.EnableNodeCliInspectArguments]: false,
[FuseV1Options.EnableEmbeddedAsarIntegrityValidation]: true,
[FuseV1Options.OnlyLoadAppFromAsar]: true,
}),
]),
],
};
export default config;