forked from Johann-S/bs-customizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
190 lines (180 loc) · 4.53 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
const path = require('path')
const glob = require('glob-all')
const CleanWebpackPlugin = require('clean-webpack-plugin')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin')
const PurgecssPlugin = require('purgecss-webpack-plugin')
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const WriteFilePlugin = require('write-file-webpack-plugin')
const ScriptExtHtmlWebpackPlugin = require('script-ext-html-webpack-plugin')
const CleanCSS = require('clean-css')
let fileName = 'bs-customizer.min'
const paths = {
src: `${path.join(__dirname, 'src/js/')}*.js`,
index: `${path.join(__dirname, 'src/')}*.html`
}
const cleanCssConfig = {
level: {
1: {
specialComments: 'all'
}
},
format: {
breakWith: 'lf'
},
returnPromise: true
}
const uglifyJsConfig = {
compress: {
typeofs: false
},
mangle: true,
output: {
comments: /^!|@preserve|@license|@cc_on/i
}
}
const htmlminifierOpts = {
collapseBooleanAttributes: true,
collapseWhitespace: true,
conservativeCollapse: false,
decodeEntities: true,
minifyCSS: {
level: {
1: {
specialComments: 0
}
}
},
minifyJS: uglifyJsConfig,
minifyURLs: false,
processConditionalComments: true,
removeAttributeQuotes: true,
removeComments: true,
removeOptionalAttributes: true,
removeOptionalTags: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
removeTagWhitespace: false, // this leads to invalid HTML
sortAttributes: true,
sortClassName: true
}
module.exports = (env, args) => {
const isProd = args.mode === 'production'
const conf = {
entry: './src/js/index.js',
output: {
filename: '[name].bundle.js',
chunkFilename: '[name].bundle.js',
path: path.resolve(__dirname, 'dist'),
publicPath: '/dist/'
},
plugins: [
new CleanWebpackPlugin([
path.resolve(__dirname, 'dist'),
path.resolve(__dirname, 'index.html')
]),
new CopyWebpackPlugin([
'src/js/lib/sass.worker.js'
]),
new MiniCssExtractPlugin({
chunkFilename: `${fileName}.css`
}),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, 'src/index.html'),
filename: path.resolve(__dirname, 'index.html'),
minify: isProd ? htmlminifierOpts : false
}),
new ScriptExtHtmlWebpackPlugin({
defaultAttribute: 'async'
}),
new WriteFilePlugin()
],
module: {
rules: [
{
test: /\.js$/,
exclude: /(node_modules)/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env'],
plugins: ['@babel/plugin-syntax-dynamic-import']
}
}
},
{
test: /\.css$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {}
},
'css-loader'
]
},
{
test: /\.(eot|ttf|woff|woff2)$/,
loader: 'file-loader',
options: {
name: 'fonts/[name].[ext]',
publicPath: './'
}
},
{
test: /\.svg/,
loader: 'file-loader',
options: {
name: 'svg/[name].[ext]'
}
}
]
},
resolve: {
alias: {
jquery$: path.resolve(__dirname, 'node_modules/jquery/dist/jquery.slim.js')
}
}
}
if (isProd) {
conf.output.publicPath = 'dist/'
conf.optimization = {
minimizer: [
new UglifyJsPlugin({
cache: true,
parallel: true,
uglifyOptions: uglifyJsConfig
}),
new OptimizeCSSAssetsPlugin({
cssProcessor: {
process: (input, opts) => {
delete opts.to
const cleanCss = new CleanCSS(Object.assign(cleanCssConfig, opts))
return cleanCss.minify(input)
.then(output => ({ css: output.styles }))
}
}
})
]
}
conf.plugins.push(
new PurgecssPlugin({
paths: glob.sync([
paths.src,
paths.index
]),
whitelistPatterns: [
/^modal/
]
})
)
} else {
conf.devtool = 'source-map'
conf.devServer = {
publicPath: '/dist/'
}
}
return conf
}