-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
149 lines (140 loc) · 3.75 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
const dotenv = require('dotenv');
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 HtmlWebpackPlugin = require('html-webpack-plugin');
const { ifProduction, ifDevelopment } = getIfUtils(process.env.NODE_ENV);
dotenv.config();
module.exports = {
mode: ifProduction('production', 'development'),
/**
* Add your entry files here
*/
entry: {
'js/gdi-modularity-about-me': './source/js/index.tsx',
},
/**
* Output settings
*/
output: {
filename: '[name].[contenthash].js',
path: path.resolve(__dirname, 'dist'),
publicPath: ''
},
/**
* Define external dependencies here
*/
externals: {},
module: {
rules: [
/**
* 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',
],
},
{
test: /\.tsx?$/,
use: ['babel-loader', 'ts-loader'],
exclude: /node_modules/,
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.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({
// Don't include source maps
filter: (file) => !file.path.match(/\.(map)$/),
// Custom mapping of manifest item goes here
map: function (file) {
// Fix incorrect key for fonts
if (file.isAsset && file.isModuleAsset && file.path.match(/\.(woff|woff2|eot|ttf|otf)$/)) {
const pathParts = file.path.split('.');
const nameParts = file.name.split('.');
// Compare extensions
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 },
},
],
},
}),
),
/**
* HTML used by webpack dev server
*/
ifDevelopment(
new HtmlWebpackPlugin({
template: './source/js/template.html.ejs',
env: process.env
})
),
]).filter(Boolean),
devtool: 'source-map',
stats: { children: false },
};