-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathforge.config.ts
151 lines (142 loc) · 4.3 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
import { rmSync } from 'fs';
import path from 'path';
import { MakerDMG } from '@electron-forge/maker-dmg';
import { MakerSquirrel } from '@electron-forge/maker-squirrel';
import { MakerZIP } from '@electron-forge/maker-zip';
// import { AutoUnpackNativesPlugin } from '@electron-forge/plugin-auto-unpack-natives';
import { WebpackPlugin } from '@electron-forge/plugin-webpack';
import { PublisherGithub } from '@electron-forge/publisher-github';
// import MakerAppImage from 'electron-forge-maker-appimage';
import { move, pathExists, remove } from 'fs-extra';
// import PublisherGithubLatestYml from 'publisher-github-latest-yml';
import pkg from './package.json';
import { mainConfig } from './webpack.main.config';
import { rendererConfig } from './webpack.renderer.config';
import type { ForgeConfig } from '@electron-forge/shared-types';
const isOnGithubActions = process.env.CI === 'true';
const config: ForgeConfig = {
packagerConfig: {
name: 'WooCommerce POS',
executableName: 'WooCommercePOS',
buildVersion: `${pkg.version}`,
icon: path.resolve(__dirname, 'icons', 'icon'),
extraResource: [path.resolve(__dirname, 'dist')],
osxSign: {},
osxNotarize: isOnGithubActions
? {
// tool: 'notarytool',
appleId: process.env.APPLE_ID || '',
appleIdPassword: process.env.APPLE_ID_PASSWORD || '',
teamId: process.env.APPLE_TEAM_ID || '',
}
: undefined,
protocols: [
{
name: 'WooCommerce POS',
schemes: ['wcpos'],
},
],
},
rebuildConfig: {},
hooks: {
packageAfterPrune: async (forgeConfig, buildPath) => {
const sqliteBuildPath = path.join(buildPath, 'node_modules', 'better-sqlite3', 'build');
// console.log("Sqlite BuildPath: ", sqliteBuildPath);
// needs to be deleted otherwise macos codesign will fail
rmSync(sqliteBuildPath, {
recursive: true,
force: true,
});
},
postMake: async (forgeConfig, makeResults) => {
// Having a space in the name is not allowed on GitHub releases
for (const result of makeResults) {
for (const artifactPath of result.artifacts) {
const parsedPath = path.parse(artifactPath);
const newBaseName = parsedPath.base.replace(/ /g, '-');
const newArtifactPath = path.join(parsedPath.dir, newBaseName);
if (artifactPath !== newArtifactPath) {
if (await pathExists(newArtifactPath)) {
console.log(`File already exists at ${newArtifactPath}, removing...`);
await remove(newArtifactPath);
}
await move(artifactPath, newArtifactPath);
}
// Update the artifact path in the result object
result.artifacts = result.artifacts.map((artifact) =>
artifact === artifactPath ? newArtifactPath : artifact
);
}
}
return makeResults;
},
},
makers: [
new MakerSquirrel({
name: 'WooCommercePOS',
setupIcon: path.resolve(__dirname, 'icons/icon.ico'),
loadingGif: path.resolve(__dirname, 'icons/installing.gif'),
}),
new MakerZIP({}, ['darwin']),
new MakerDMG(
{
format: 'ULFO',
icon: path.resolve(__dirname, 'icons/icon.icns'),
},
['darwin']
),
// new MakerRpm({
// // https://js.electronforge.io/interfaces/_electron_forge_maker_rpm.InternalOptions.MakerRpmConfigOptions.html
// options: { bin: 'WooCommercePOS' },
// }),
// new MakerDeb({
// // https://js.electronforge.io/interfaces/_electron_forge_maker_deb.InternalOptions.MakerDebConfigOptions.html
// options: { bin: 'WooCommercePOS' },
// }),
// new MakerAppImage(
// {
// options: {
// icon: path.resolve(__dirname, 'icons/icon.png'),
// categories: ['Office'],
// },
// },
// ['linux']
// ),
],
publishers: [
new PublisherGithub({
// https://js.electronforge.io/modules/_electron_forge_publisher_github.html
repository: {
owner: 'wcpos',
name: 'electron',
},
}),
// new PublisherGithubLatestYml({
// repository: {
// owner: 'wcpos',
// name: 'electron',
// },
// }),
],
plugins: [
// new AutoUnpackNativesPlugin({}),
new WebpackPlugin({
mainConfig,
// devContentSecurityPolicy: "connect-src 'self' * 'unsafe-eval'",
renderer: {
config: rendererConfig,
entryPoints: [
{
html: './src/index.html',
js: './src/renderer.ts',
name: 'main_window',
preload: {
js: './src/preload.ts',
},
},
],
},
}),
],
};
export default config;