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
|
import * as path from 'path';
import MiniCssExtractPlugin from 'mini-css-extract-plugin';
import NotifierPlugin from 'webpack-notifier';
import ManifestPlugin from 'webpack-assets-manifest';
import StylelintPlugin from 'stylelint-webpack-plugin';
import EsLintPlugin from 'eslint-webpack-plugin';
import WebpackbarPlugin from 'webpackbar';
import CleanTerminalPlugin from 'clean-terminal-webpack-plugin';
import {CleanWebpackPlugin} from 'clean-webpack-plugin';
import SvgChunkWebpackPlugin from 'svg-chunk-webpack-plugin';
export class Paths {
#jsSourcePath;
#scssSourcePath;
constructor({dir, source, target, js, scss}) {
this.sourcePath = path.resolve(dir, source);
this.targetPath = path.resolve(dir, target);
this.jsSourcePath = js;
this.scssSourcePath = scss;
}
jsEntry(path) {
return `${this.jsSourcePath}/${path}`;
}
scssEntry(path) {
return `${this.scssSourcePath}/${path}`;
}
};
export const makeConfig = (env, argv, options) => {
const isProd = argv.mode === 'production',
isDev = argv.mode === 'development',
isWatch = typeof argv.watch !== 'undefined' && argv.watch === true,
{paths, entry, plugins = [], manifestCustomize = (e) => e} = options;
return {
entry,
output: {
filename: 'js/[name].[contenthash:8].js',
path: paths.targetPath,
},
context: paths.sourcePath,
devtool: isDev ? 'source-map' : false,
watchOptions: {
ignored: ['node_modules/**']
},
performance: {
hints: false
},
plugins: [
new ManifestPlugin({
customize(entry) {
if (
entry.key.startsWith('svg/') ||
entry.key.endsWith('.map')
) return false;
const srcdir = path.dirname(entry.key),
destdir = path.dirname(entry.value);
if (srcdir !== destdir) {
entry.key = destdir + '/' + path.basename(entry.key);
}
return manifestCustomize(entry);
}
}),
new CleanWebpackPlugin({
cleanStaleWebpackAssets: !isWatch
}),
new MiniCssExtractPlugin({
filename: 'css/[name].[contenthash:8].css',
chunkFilename: '[id].[contenthash:8].css'
}),
new StylelintPlugin({
failOnError: !isWatch,
}),
new EsLintPlugin({
overrideConfig: {
rules: {
"no-console": isProd ? 2 : 1,
"no-debugger": isProd ? 2 : 1,
"no-empty": isProd ? 2 : 1,
"no-unused-vars": isProd ? 2 : 1,
"no-constant-condition": isProd ? 2 : 1,
}
}
}),
new NotifierPlugin(),
new WebpackbarPlugin(),
new CleanTerminalPlugin(),
new SvgChunkWebpackPlugin({
filename: '[name].[contenthash].svg',
svgstoreConfig: {inline: false},
}),
...plugins,
],
externals: {
},
module: {
rules: [
{
test: /\.js$/i,
include: paths.sourcePath,
use: [
'babel-loader'
]
},
{
test: /\.s[ac]ss$/i,
include: paths.sourcePath,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'postcss-loader',
'sass-loader',
],
},
{
test: /.svg$/i,
include: paths.sourcePath,
use: [
{loader: SvgChunkWebpackPlugin.loader}
]
}
],
},
};
};
|