-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.js
156 lines (141 loc) · 4.48 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
const path = require('path');
const { WebpackManifestPlugin } = require('webpack-manifest-plugin');
const WebpackNotifierPlugin = require('webpack-notifier');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const RemoveEmptyScripts = require('webpack-remove-empty-scripts');
const CssMinimizerWebpackPlugin = require('css-minimizer-webpack-plugin');
const autoprefixer = require('autoprefixer');
const { getIfUtils, removeEmpty } = require('webpack-config-utils');
const { ifProduction } = getIfUtils(process.env.NODE_ENV);
module.exports = {
mode: ifProduction('production', 'development'),
/**
* Add your entry files here
*/
entry: {
'css/broken-link-detector': './source/sass/broken-link-detector.scss',
'js/context-detector': './source/js/context-detector.ts',
'js/editor-highlight': './source/js/editor-highlight.js'
},
/**
* Output settings
*/
output: {
filename: '[name].[contenthash].js',
path: path.resolve(__dirname, 'dist'),
publicPath: '',
},
/**
* Define external dependencies here
*/
externals: {},
module: {
rules: [
/**
* TypeScript and JavaScript
*/
{
test: /\.tsx?$/, // TypeScript and TSX file handling
use: 'ts-loader',
exclude: /node_modules/,
},
/**
* Styles
*/
{
test: /\.(sa|sc|c)ss$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
importLoaders: 3, // 0 => no loaders (default); 1 => postcss-loader; 2 => sass-loader
},
},
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: [autoprefixer],
},
},
},
{
loader: 'sass-loader',
options: {},
},
'import-glob-loader',
],
},
],
},
/**
* Add TypeScript resolution
*/
resolve: {
extensions: ['.tsx', '.ts', '.js'], // Resolve .ts and .tsx in addition to .js
},
plugins: removeEmpty([
/**
* Fix CSS entry chunks generating js file
*/
new RemoveEmptyScripts(),
/**
* Clean dist folder
*/
new CleanWebpackPlugin(),
/**
* Output CSS files
*/
new MiniCssExtractPlugin({
filename: '[name].[contenthash].css',
}),
/**
* Output manifest.json for cache busting
*/
new WebpackManifestPlugin({
filter: function (file) {
if (file.path.match(/\.(map)$/)) {
return false;
}
return true;
},
map: function (file) {
if (
file.isAsset &&
file.isModuleAsset &&
file.path.match(/\.(woff|woff2|eot|ttf|otf)$/)
) {
const pathParts = file.path.split('.');
const nameParts = file.name.split('.');
if (pathParts[pathParts.length - 1] !== nameParts[nameParts.length - 1]) {
file.name = pathParts[0].concat('.', pathParts[pathParts.length - 1]);
}
}
return file;
},
}),
/**
* Enable build OS notifications (when using watch command)
*/
new WebpackNotifierPlugin({ alwaysNotify: true, skipFirstNotification: true }),
/**
* Minimize CSS assets
*/
ifProduction(
new CssMinimizerWebpackPlugin({
minimizerOptions: {
preset: [
'default',
{
discardComments: { removeAll: true },
},
],
},
})
),
]).filter(Boolean),
devtool: 'source-map',
stats: { children: false },
};