-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
213 lines (201 loc) · 5.87 KB
/
webpack.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/* global __dirname */
const path = require('path');
const pathRoot = __dirname;
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
const {CleanWebpackPlugin} = require('clean-webpack-plugin');
const ESLintPlugin = require('eslint-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const StyleLintPlugin = require('stylelint-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const npmPackage = require(path.resolve(pathRoot, './package.json'));
const packageName = npmPackage.name;
/**
* @param {null} env
* @param {{ mode: 'none' | 'development' | 'production' }} argv
*/
module.exports = (env, argv) => {
const indexPackageName = argv.mode === 'development' ? 'index' : `${packageName}`;
// Common configurations
// ------------------------------------------------------
const config = {
name: packageName,
mode: argv.mode,
entry: './src/index.js',
// https://webpack.js.org/configuration/output/
output: {
// filename: `js/${indexPackageName}.js`,
filename: `[name].js`,
},
target: 'browserslist',
resolve: {extensions: ['.js']},
stats: {
// errorDetails: true,
children: true,
},
module: {
rules: [
{
test: /\.(s?css)$/,
use: [
argv.mode === 'development' ? 'style-loader' : MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
importLoaders: 1,
sourceMap: true,
},
},
'postcss-loader', // options loaded from postcss.config.js
{
loader: 'sass-loader',
options: {
sourceMap: true,
sassOptions: {
outputStyle: 'expanded',
includePaths: [
'./src/scss/'
],
},
},
},
],
},
// {
// // This loader is the one that auto-refreshes the browsers after an edit
// test: /\.html$/,
// use: [{
// loader: 'html-loader',
// options: {
// minimize: argv.mode === 'development',
// },
// }],
// },
{
test: /\.(svg|jpg|png|ico)$/i,
type: 'asset/resource',
generator: {
filename: '[name][ext]',
},
},
{
test: /\.js$/,
exclude: /(node_modules|coverage|tests)/,
use: {
loader: 'babel-loader',
options: {
presets: [
['@babel/preset-env'],
],
plugins: [
[
"@babel/plugin-transform-runtime",
{
regenerator: true
}
]
]
},
},
},
],
},
plugins: [
new MiniCssExtractPlugin({
filename: argv.mode === 'development' ? '[name].css' : `${packageName}.min.css`,
chunkFilename: '[id].css',
}),
new HtmlWebpackPlugin({
favicon: './src/favicon.ico',
filename: `${indexPackageName}.html`,
template: './src/index.html',
inject: true,
hash: false,
minify: argv.mode !== 'development',
}),
],
}; // Common configurations
// Development build
// ------------------------------------------------------
if (argv.mode === 'development') {
config.watchOptions = {
aggregateTimeout: 300,
poll: 1000,
ignored: ['node_modules'],
};
// https://webpack.js.org/configuration/dev-server/
config.devServer = {
hot: true,
watchFiles: ['src/**/*'],
host: 'localhost',
port: 4600,
devMiddleware: {
stats: 'errors-warnings', // 'minimal, 'errors-only', // 'normal'
},
};
config.performance = false;
config.devtool = 'source-map';
} // IF mode === 'development'
// Production build
// ------------------------------------------------------
if (argv.mode === 'production') {
config.output = {
filename: `${packageName}.min.js`,
path: path.resolve(__dirname, './dist/'),
};
// https://webpack.js.org/configuration/performance/
config.performance = {
// values are in bytes, Default = 250000 (250KB or 244KiB)
// KiB = KB * 0.976563
maxEntrypointSize: (2.5e5), // 244 KiB
maxAssetSize: (2.5e5), // 244 KiB
};
config.optimization = {
minimize: true,
minimizer: [
// https://webpack.js.org/plugins/terser-webpack-plugin/
new TerserPlugin({
test: /\.js$/i,
exclude: /\.\/(tests|coverage|dist)/,
parallel: true,
extractComments: false,
minify: TerserPlugin.esbuildMinify,
terserOptions: {
// https://esbuild.github.io/api/#keep-names
ecma: 2018,
minify: true,
treeShaking: true,
keepNames: false,
mangleProps: /^_/
},
}),
new CssMinimizerPlugin({
include: /\.css$/g,
minimizerOptions: {
sourcemap: false,
preset: ['default', {discardComments: {removeAll: true}}],
},
parallel: true,
}),
],
};
config.plugins = [
new CleanWebpackPlugin({
dry: false,
verbose: false,
cleanOnceBeforeBuildPatterns: ['./**/*'], // clean out dist directory
}),
new StyleLintPlugin({
context: './src/scss/',
extensions: ['scss'],
files: ['**/*.scss'],
}),
new ESLintPlugin({
extensions: ['.js'],
exclude: 'node_modules'
}),
...(config.plugins),
];
} // IF mode === 'production'
return config;
};