-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathwebpack.config.js
More file actions
104 lines (100 loc) · 2.92 KB
/
webpack.config.js
File metadata and controls
104 lines (100 loc) · 2.92 KB
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
const path = require('path');
const childProcess = require('child_process');
const Dotenv = require('dotenv-webpack');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const entryPoints = require('./webpack.entry-points.json');
const entry = Object.fromEntries(Object.entries(entryPoints)
.map(([name, def]) => [name, `./src/js/${def.mainJs ? def.mainJs : `main-${name}.js`}`]));
const htmlPlugins = Object.entries(entryPoints).map(([name, def]) => {
const htmlFileName = def.html ? def.html : `${name}.html`;
return new HtmlWebpackPlugin({
template: path.resolve(__dirname, `src/html/${htmlFileName}`),
filename: path.resolve(__dirname, htmlFileName),
chunks: [name],
minify: true,
});
});
const getGitCommitHash = () => childProcess
.execSync('git rev-parse --short HEAD')
.toString()
.trim();
module.exports = {
entry,
output: {
filename: '[name].[contenthash].js',
path: path.resolve(__dirname, 'assets'),
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
cacheDirectory: './.babel-cache',
presets: [
// Note: to debug Babel, the cache has to be disabled or emptied
['@babel/preset-env', { useBuiltIns: 'usage', corejs: 3, debug: false }],
],
sourceType: 'unambiguous',
},
},
},
{
test: /\.(scss|css)$/,
exclude: /node_modules/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: '',
},
},
{
loader: 'css-loader',
options: {
sourceMap: true,
},
},
{
loader: 'sass-loader',
options: {
sourceMap: true,
},
},
],
},
{
test: /\.(png|svg|jpg|jpeg|gif)$/i,
type: 'asset/resource',
},
],
},
optimization: {
minimize: true,
minimizer: [new TerserPlugin()],
},
plugins: [
new Dotenv(),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV || 'development'),
'process.env.GIT_COMMIT_HASH': JSON.stringify(getGitCommitHash()),
}),
new MiniCssExtractPlugin({
filename: '[name].[contenthash].css',
}),
...htmlPlugins,
new CleanWebpackPlugin({
// todo: temporary measure. Dev builds should be done without hashes in the filename.
cleanOnceBeforeBuildPatterns: ['**/*'],
}),
],
mode: 'development',
// Todo: change the source map settings for production builds
devtool: 'source-map',
};