-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.main.config.js
102 lines (97 loc) · 2.57 KB
/
webpack.main.config.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
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
const { StatsWriterPlugin } = require("webpack-stats-plugin");
const fs = require("fs");
const path = require("path");
const TerserPlugin = require("terser-webpack-plugin");
const Visualizer = require("webpack-visualizer-plugin2");
const webpack = require("webpack");
const pkgJson = JSON.parse(fs.readFileSync("package.json"));
const isWindows = /^win/.test(process.platform);
const isMac = /^darwin$/.test(process.platform);
const isLinux = /^linux$/.test(process.platform);
const isPackaged = (process.env.BUILD_PACKAGE ?? "false") === "true";
const isBeta = (process.env.BETA_RELEASE ?? "false") === "true";
const env = process.env.NODE_ENV ?? "production";
const isProduction = env === "production";
const buildDirectory = path.join(__dirname, "build");
module.exports = [
{
mode: env,
entry: "./src/main/main.js",
target: "electron-main",
output: {
path: buildDirectory,
filename: "main.js",
},
module: {
rules: [
{
test: /\.(ico|icns|png)/,
use: [
{
loader: "url-loader",
options: {
limit: 10_000,
encoding: "base64",
},
},
],
},
],
},
optimization: {
minimize: isProduction,
minimizer: [
new TerserPlugin({
terserOptions: {
compress: {
drop_console: isProduction,
passes: 3,
},
},
}),
],
},
plugins: [
new webpack.DefinePlugin({
__PODUCTION__: isProduction,
__DEVELOPMENT__: !isProduction,
__VERSION__: JSON.stringify(pkgJson.version),
__PACKAGED__: isPackaged,
__WINDOWS__: isWindows,
__MACOS__: isMac,
__LINUX__: isLinux,
__BETA__: isBeta,
}),
new StatsWriterPlugin({
filename: path.join("..", "stats", "log-main.json"),
fields: null,
stats: { chunkModules: true },
}),
new Visualizer({
filename: path.join("..", "stats", "statistics-main.html"),
}),
],
node: {
__dirname: false,
},
},
{
mode: env,
entry: "./src/main/preload.js",
target: "electron-preload",
output: {
path: buildDirectory,
filename: "preload.js",
},
plugins: [
new StatsWriterPlugin({
filename: path.join("..", "stats", "log-preload.json"),
fields: null,
stats: { chunkModules: true },
}),
new Visualizer({
filename: path.join("..", "stats", "statistics-preload.html"),
}),
],
},
];