-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.parts.js
203 lines (185 loc) · 5.44 KB
/
webpack.parts.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
const webpack = require("webpack");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const PurgecssPlugin = require("purgecss-webpack-plugin");
const SpriteLoaderPlugin = require("svg-sprite-loader/plugin");
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
const GitRevisionPlugin = require("git-revision-webpack-plugin");
const TerserPlugin = require("terser-webpack-plugin");
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const cssnano = require("cssnano");
const CompressionPlugin = require("compression-webpack-plugin");
exports.devServer = ({ host, port } = {}) => ({
devServer: {
host, // Defaults to `localhost`
port, // Defaults to 8080
open: "chrome",
overlay: true,
},
});
exports.loadCSS = ({ include, exclude } = {}) => ({
module: {
rules: [
{
test: /\.css$/,
include,
exclude,
use: ["style-loader", "css-loader"],
},
],
},
});
exports.extractCSS = ({ include, exclude, use = [] }) => {
// Extract CSS to a file
const plugin = new MiniCssExtractPlugin({
// Use content hash, not chunkhash (as chunkhash would change with the application, not just the css content)
filename: "[name].[contentHash:4].css",
});
return {
module: {
rules: [
{
test: /\.css$/,
include,
exclude,
use: [MiniCssExtractPlugin.loader].concat(use),
},
],
},
plugins: [plugin],
};
};
// Purify CSS was not maintained, PurgeCSS an alternative, or DropCSS
exports.purgeCSS = ({ paths, whitelist }) => ({
plugins: [new PurgecssPlugin({ paths, whitelist })],
});
exports.autoprefix = () => ({
loader: "postcss-loader",
options: {
plugins: () => [require("autoprefixer")()],
},
});
//TODO: optimize images using imagemin-webpack
exports.loadImages = ({ include, exclude, options } = {}) => ({
module: {
rules: [
{
test: /\.(png|jpg)$/,
include,
exclude,
use: [
{
loader: "url-loader",
options,
},
{
loader: "image-webpack-loader",
options: {
mozjpeg: {
progressive: true,
quality: 65,
},
optipng: {
enabled: false,
},
pngquant: {
quality: [0.65, 0.9],
speed: 4,
},
},
},
],
},
],
},
});
exports.loadFonts = ({ include, exclude } = {}) => ({
module: {
rules: [
{
test: /\.(ttf|eot|woff|woff2)$/,
use: {
loader: "file-loader",
options: {
name: "./fonts/[name].[ext]",
publicPath: "../", // Take the directory into account
},
},
},
],
},
});
exports.loadSVGs = ({ include, exclude, options } = {}) => ({
module: {
rules: [
{
test: /\.svg$/,
include,
exclude,
use: [
{
loader: "svg-sprite-loader",
options,
},
"svgo-loader",
],
},
],
},
plugins: [new SpriteLoaderPlugin()],
});
exports.loadJS = ({ include, exclude }) => ({
module: {
rules: [
{
test: /\.js$/,
include,
exclude,
use: "babel-loader",
},
],
},
});
exports.generateSourceMaps = ({ type }) => ({
devtool: type,
// Source map option can be set for css/sass/less loaders
// Css-loader known to have problem with relative paths in imports. Should set output.public path to the server url
});
exports.disableCodeSplitting = () => ({
plugins: [new webpack.optimize.LimitChunkCountPlugin({ maxChunks: 1 })],
});
exports.clean = (path) => ({
plugins: [new CleanWebpackPlugin()],
});
exports.attachRevision = () => ({
plugins: [
new webpack.BannerPlugin({
banner: new GitRevisionPlugin().version(),
}),
],
});
exports.minifyJS = () => ({
// Terser is used by default in production, but this allows configuration
optimization: {
minimizer: [
new TerserPlugin({
sourceMap: true,
// test: /** regex */
// include
// exclude
// terserOptions: { https://github.com/terser/terser#minify-options }
}),
],
},
});
exports.minifyCSS = ({ options }) => ({
plugins: [
new OptimizeCssAssetsPlugin({
cssProcessor: cssnano,
cssProcessorOptions: options,
canPrint: false
})
]
});
exports.compress = () => ({
plugins: [new CompressionPlugin()]
});