-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.min.js
166 lines (160 loc) · 4.3 KB
/
webpack.config.min.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
const path = require('path');
const glob = require('glob');
const CopyPlugin = require('copy-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
const SpriteLoaderPlugin = require( 'svg-sprite-loader/plugin' );
const RemoveEmptyScriptsPlugin = require( 'webpack-remove-empty-scripts' );
// separate and compile every .scss & .js file from root 'src' folder
const parseEntries = (type, outputFolder, postfix = '') => {
return glob.sync(`./src/${type}`).reduce((obj, el) => {
const name = path.parse(el).name;
obj[`${outputFolder}/${name}${postfix}`] = el;
return obj;
}, {});
}
// Entry for SVG icons sprite
const parseSvgEntries = (folder) => {
return glob.sync(`./src/sprites/${folder}/*.svg`).reduce((entries, filepath) => {
const name = path.basename(filepath, '.svg');
entries[`${folder}/${name}`] = filepath;
return entries;
}, {});
}
module.exports = {
entry: {
...parseSvgEntries('states'),
...parseSvgEntries('flags'),
...parseEntries('js/**.js', 'js', '.min'),
...parseEntries('scss/**.scss', 'css', '.min'),
},
output: {
path: path.resolve(__dirname, 'expansa/dashboard/assets'),
},
optimization: {
minimize: true,
minimizer: [
new CssMinimizerPlugin({
minimizerOptions: {
preset: [
"default",
{
discardComments: { removeAll: true },
},
],
},
}),
new TerserPlugin({
terserOptions: {
format: {
comments: false,
},
},
extractComments: false,
}),
],
},
mode: 'production',
module: {
rules: [
{
test: /\.svg$/,
include: [
path.resolve(__dirname, 'src/sprite'),
path.resolve(__dirname, 'src/flags')
],
use: [
{
loader: 'svg-sprite-loader',
options: {
extract: true,
spriteFilename: (pathData) => {
const folderName = pathData.match(/src[\\\/]sprites[\\\/]([^\\\/]+)/)[1];
// Use 'pathData.resource' for resource path to determine correct folder
return `sprites/${folderName}.svg`;
},
},
},
{
loader: 'svgo-loader',
},
],
},
{
test: /\.(sass|scss)$/,
include: path.resolve(__dirname, 'src/scss'),
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {},
},
{
loader: 'css-loader',
options: {
sourceMap: false,
url: false,
importLoaders: 1
},
},
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: [
require('autoprefixer'),
],
},
},
},
{
loader: 'sass-loader',
options: {
implementation: require('sass'),
sourceMap: false,
},
},
],
},
],
},
plugins: [
new SpriteLoaderPlugin(),
new MiniCssExtractPlugin({
filename: '[name].css'
}),
new CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: [],
cleanAfterEveryBuildPatterns: ['./states', './flags', 'css/**.js'],
}),
new CopyPlugin({
patterns: [
{
from: 'src/files',
to: 'files',
noErrorOnMissing: true,
},
{
from: 'src/fonts',
to: 'fonts',
noErrorOnMissing: true,
},
{
from: 'src/images',
to: 'images',
noErrorOnMissing: true,
},
{
from: 'src/css',
to: 'css',
noErrorOnMissing: true,
},
],
}),
// Remove unexpected .js and .php files, generated for scss entries (like 'inline' folder)
new RemoveEmptyScriptsPlugin({
stage: RemoveEmptyScriptsPlugin.STAGE_BEFORE_PROCESS_PLUGINS,
}),
],
}