-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
231 lines (216 loc) · 6.78 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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/* global __dirname */
const path = require('path');
const pathRoot = __dirname;
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const {CleanWebpackPlugin} = require('clean-webpack-plugin');
const npmPackage = require(path.resolve(pathRoot, './package.json'));
const packageName = npmPackage.name;
module.exports = (env, argv) => {
// Common configurations
// ------------------------------------------------------
const config = {
name: packageName,
mode: env,
entry: path.resolve(pathRoot, './src/index.js'),
// https://webpack.js.org/configuration/output/
output: {
filename: `js/${packageName}.js`,
},
target: ['browserslist'],
resolve: {extensions: ['.js']},
module: {
rules: [
{
test: /\.css$/,
use: [
'style-loader',
{loader: 'css-loader', options: {importLoaders: 1}},
'postcss-loader', // options loaded from postcss.config.js
],
},
{
test: /\.scss$/,
use: [
argv.mode === 'development' ? 'style-loader' : MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
importLoaders: 1,
sourceMap: true,
},
},
{
loader: 'postcss-loader',
options: {
sourceMap: true,
},
},
{
loader: 'sass-loader',
options: {
sourceMap: true,
sassOptions: {
outputStyle: 'expanded',
includePaths: [
path.join(pathRoot, 'src/scss/'),
],
},
},
},
],
},
{
// This loader is the one that auto-refreshes the browsers after an edit
test: /\.html$/,
use: [{
loader: 'html-loader',
options: {
// attrs: [':data-src'],
minimize: argv.mode === 'development',
},
}],
},
{
test: /\.(svg|jpg|png|ico)$/i,
type: 'asset/resource',
generator: {
filename: 'assets/[name][ext]',
},
},
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: [
[
'@babel/preset-env',
{
useBuiltIns: 'usage',
corejs: 3,
modules: 'commonjs', // 'amd' | 'umd' | 'systemjs' | 'commonjs' | 'auto' | false, defaults to 'auto'
},
],
],
},
},
},
],
},
}; // 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 = {
host: 'localhost',
port: 4780,
static: {
directory: path.join(pathRoot, 'static'),
staticOptions: {},
publicPath: path.join(pathRoot, 'static'), // ['/static-public-path-one/', '/static-public-path-two/']
serveIndex: true, // options for the `serveIndex` option you can find https://github.com/expressjs/serve-index
watch: true, // options for the `watch` option you can find https://github.com/paulmillr/chokidar
},
client: false, // Bug on Webpack 5: https://github.com/webpack/webpack-dev-server/issues/2484
devMiddleware: {
stats: 'errors-warnings', // 'minimal, 'errors-only', // 'normal'
},
};
config.performance = false;
config.devtool = 'source-map';
config.plugins = [
new HtmlWebpackPlugin({
inject: true,
hash: false,
minify: false,
template: path.resolve(pathRoot, './src/index.html'),
filename: 'index.html',
}),
];
} // IF mode === 'development'
// Production build
// ------------------------------------------------------
if (argv.mode === 'production') {
config.output.path = path.resolve(pathRoot, './dist/');
config.output.filename = `${packageName}.min.js`;
config.optimization = {
minimize: true,
minimizer: [
// https://webpack.js.org/plugins/terser-webpack-plugin/
new TerserPlugin({
test: /\.js($|\?)/i,
parallel: true,
extractComments: false,
terserOptions: {
// ecma: undefined,
// warnings: false,
// parse: {},
// compress: {},
// module: false,
// Mangle advanced options see:
// https://lihautan.com/reduce-minified-code-size-by-property-mangling/
mangle: {
// module: true,
// properties: false // default value is false
properties: {
// specify a list of names to be mangled with a regex
// regex: /(^_)|(^(internalMessage|classNames|highlight|keepOpen|hidden|invalid|serviceError|outOfService|disclaimer|cacheKey|i18n|dataBank)$)/,
regex: /^_/,
},
},
output: {
comments: false, // /(?:^!|@(?:license|preserve))/i,
},
},
}),
new CssMinimizerPlugin({
include: /\.css$/g,
// minify: require('cssnano'),
minimizerOptions: {
// map: {
// inline: false,
// annotation: true,
// },
sourcemap: false,
preset: ['default', {discardComments: {removeAll: true}}],
},
parallel: true,
}),
],
};
// https://webpack.js.org/configuration/performance/
config.performance = {
// values are in bytes
maxEntrypointSize: (3e3),
maxAssetSize: (2.5e3),
};
config.plugins = [
new CleanWebpackPlugin({
dry: false,
verbose: false,
cleanOnceBeforeBuildPatterns: ['./**/*'], // clean out dist directory
}),
new MiniCssExtractPlugin({
filename: `${packageName}.min.css`,
chunkFilename: '[id].css',
}),
new HtmlWebpackPlugin({
inject: true,
hash: false,
template: path.resolve(pathRoot, './src/index.html'),
filename: `${packageName}.html`,
}),
];
} // IF mode === 'production'
return config;
};