-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.renderer.config.js
128 lines (122 loc) · 3.37 KB
/
webpack.renderer.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
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
const { StatsWriterPlugin } = require("webpack-stats-plugin");
const CspHtmlWebpackPlugin = require("csp-html-webpack-plugin");
const fs = require("fs");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const path = require("path");
const TerserPlugin = require("terser-webpack-plugin");
const Visualizer = require("webpack-visualizer-plugin2");
const webpack = require("webpack");
const env = process.env.NODE_ENV ?? "production";
const isProduction = env === "production";
const buildDirectory = path.join(__dirname, "build");
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 entryPoints = fs
.readdirSync(path.join(process.cwd(), "src", "renderer", "entries"))
.map((p) => [p.split(".")[0], path.resolve("src", "renderer", "entries", p)])
.reduce((acc, cur) => ({ ...acc, [cur[0]]: cur[1] }), {});
module.exports = {
mode: env,
entry: entryPoints,
target: "browserslist:last 1 electron version",
output: {
path: buildDirectory,
filename: "[name].js",
},
devtool: isProduction ? false : "source-map",
module: {
rules: [
{
test: /\.elm$/,
exclude: [/elm-stuff/, /node_modules/],
use: [
{
loader: "elm-webpack-loader",
options: { debug: !isProduction, optimize: isProduction },
},
],
},
{
test: /\.(s?[ca]ss)$/,
use: ["style-loader", "css-loader", "sass-loader"],
},
{
test: /\.png$/,
use: ["file-loader"],
},
],
},
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-renderers.json"),
fields: null,
stats: { chunkModules: true },
}),
new Visualizer({
filename: path.join("..", "stats", "statistics-renderers.html"),
}),
...Object.keys(entryPoints).map(
(entry) =>
new HtmlWebpackPlugin({
filename: `${entry}.html`,
title: null,
chunks: [entry],
meta: {
"Content-Security-Policy": {
"http-equiv": "Content-Security-Policy",
content: "default-src 'self'",
},
},
})
),
new CspHtmlWebpackPlugin(
{
"script-src": "",
"style-src": "'unsafe-inline'",
},
{
enabled: true,
hashingMethod: "sha256",
hashEnabled: {
"script-src": true,
"style-src": true,
},
nonceEnabled: {
"script-src": true,
"style-src": true,
},
}
),
],
devServer: {
compress: true,
port: 9000,
},
};