-
Notifications
You must be signed in to change notification settings - Fork 271
/
Copy pathafterPack.js
65 lines (53 loc) · 1.63 KB
/
afterPack.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
const path = require('node:path');
const fs = require('node:fs');
const { AfterPackContext } = require('electron-builder');
const builderConfig = require('../config/electron-builder');
const electronLanguages = builderConfig.electronLanguages;
function logAfterPackProgress(msg) {
// biome-ignore lint/suspicious/noConsoleLog: log notarizing progress
console.log(` • [afterPack]: ${msg}`);
}
/**
* @param {AfterPackContext} context
*/
const afterPack = async (context) => {
logAfterPackProgress('Starting...');
const appName = context.packager.appInfo.productFilename;
const appOutDir = context.appOutDir;
const platform = context.electronPlatformName;
if (platform === 'darwin') {
removeUnusedLocales(appOutDir, appName);
}
logAfterPackProgress('Completed');
};
/**
* Removes unused locales for macOS builds.
* @param {string} appOutDir
* @param {string} appName
*/
const removeUnusedLocales = (appOutDir, appName) => {
logAfterPackProgress('removing unused locales');
const resourcesPath = path.join(
appOutDir,
`${appName}.app`,
'Contents',
'Frameworks',
'Electron Framework.framework',
'Versions',
'A',
'Resources',
);
// Get all locale directories
const allLocales = fs
.readdirSync(resourcesPath)
.filter((file) => file.endsWith('.lproj'));
const langLocales = electronLanguages.map((lang) => `${lang}.lproj`);
// Remove unused locales
for (const locale of allLocales) {
if (!langLocales.includes(locale)) {
const localePath = path.join(resourcesPath, locale);
fs.rmSync(localePath, { recursive: true });
}
}
};
exports.default = afterPack;