This repository has been archived by the owner on Jan 25, 2024. It is now read-only.
forked from craftcms/spoke-and-chain
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.prod.js
178 lines (168 loc) · 5.05 KB
/
webpack.prod.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
// webpack.prod.js - production builds
// node modules
const glob = require('glob-all');
const {merge} = require('webpack-merge');
const moment = require('moment');
const path = require('path');
const webpack = require('webpack');
// webpack plugins
const {CleanWebpackPlugin} = require('clean-webpack-plugin');
const CreateSymlinkPlugin = require('create-symlink-webpack-plugin');
const ImageminWebpWebpackPlugin = require('imagemin-webp-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin');
// config files
const common = require('./webpack.common.js');
const pkg = require('./package.json');
const settings = require('./webpack.settings.js');
// Configure file banner
const configureBanner = () => {
return {
banner: [
'/*!',
' * @project ' + settings.name,
' * @name ' + '[filebase]',
' * @author ' + pkg.author.name,
' * @build ' + moment().format('llll') + ' ' + Intl.DateTimeFormat().resolvedOptions().timeZone,
' * @copyright Copyright (c) ' + moment().format('YYYY') + ' ' + settings.copyright,
' */',
''
].join('\n'),
raw: true
};
};
// Configure Clean webpack
const configureCleanWebpack = () => {
return {
root: path.resolve(__dirname, settings.paths.dist),
verbose: true,
dry: false
};
};
// Configure Image loader
const configureImageLoader = () => {
return {
test: /\.(png|jpe?g|gif|svg|webp)$/i,
use: [{
loader: 'file-loader',
options: {
name: 'img/[name].[hash].[ext]'
}
},
{
loader: 'img-loader',
options: {
plugins: [
require('imagemin-gifsicle')({
interlaced: true,
}),
require('imagemin-mozjpeg')({
progressive: true,
arithmetic: false,
}),
require('imagemin-optipng')({
optimizationLevel: 5,
}),
require('imagemin-svgo')({
plugins: [{
convertPathData: false
}, ]
}),
]
}
}
]
};
};
// Configure optimization
const configureOptimization = () => {
return {
minimizer: [
new TerserPlugin(
configureTerser()
),
new OptimizeCSSAssetsPlugin({
cssProcessorOptions: {
map: {
inline: false,
annotation: true,
},
safe: true,
discardComments: true
},
})
]
};
};
// Configure Postcss loader
const configurePostcssLoader = () => {
return {
test: /\.(pcss|css)$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
importLoaders: 2,
sourceMap: true
}
},
{
loader: 'resolve-url-loader'
},
{
loader: 'postcss-loader',
options: {
sourceMap: true
}
}
]
};
};
// Configure terser
const configureTerser = () => {
return {
cache: true,
parallel: true,
sourceMap: true
};
};
// Production module exports
module.exports = [
merge(
common.webpackConfig, {
output: {
filename: path.join('./js', '[name].[chunkhash].js'),
},
stats: {warnings:false},
mode: 'production',
devtool: 'source-map',
optimization: configureOptimization(),
module: {
rules: [
configurePostcssLoader(),
configureImageLoader(),
],
},
plugins: [
new CleanWebpackPlugin(
configureCleanWebpack()
),
new MiniCssExtractPlugin({
path: path.resolve(__dirname, settings.paths.dist),
filename: path.join('./css', '[name].[chunkhash].css'),
}),
new webpack.BannerPlugin(
configureBanner()
),
new CreateSymlinkPlugin(
settings.createSymlinkConfig,
true
),
new webpack.optimize.ModuleConcatenationPlugin(),
new ImageminWebpWebpackPlugin(),
]
}
),
];