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
204
205
206
207
208
209
210
211
212
213
214
|
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 Autoprefixer from 'autoprefixer';
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}`;
}
};
const babelConfig = {
presets: [
"@babel/preset-env"
],
plugins: [
["polyfill-corejs3", { method: "usage-global"}]
],
};
const postCssConfig = {
plugins: [
Autoprefixer
]
};
const esLintConfig = {
'root': true,
'extends': [
'eslint:recommended'
],
'globals': {
'wp': true,
},
'env': {
'node': true,
'es6': true,
'amd': true,
'browser': true,
'jquery': true,
},
'parser': '@babel/eslint-parser',
'parserOptions': {
'ecmaFeatures': {
'globalReturn': true,
'generators': false,
'objectLiteralDuplicateProperties': false,
'experimentalObjectRestSpread': true,
},
'ecmaVersion': 2017,
'sourceType': 'module',
'requireConfigFile': false,
},
'plugins': [
],
'settings': {
'import/core-modules': [],
'import/ignore': [
'node_modules',
'\\.(coffee|scss|css|less|hbs|svg|json)$',
]
},
'rules': {
'no-console': 0,
'quotes': ['error', 'single'],
'semi': ['warn', 'always'],
'comma-dangle': 0,
},
};
const styleLintConfig = {
'extends': 'stylelint-config-standard',
'plugins': ['stylelint-scss'],
'customSyntax': 'postcss-scss',
'rules': {
'no-empty-source': null,
//'selector-id-pattern': null,
'selector-class-pattern': null, // TODO: remove and fix
'at-rule-no-unknown': null,
'function-no-unknown': null,
'no-invalid-position-at-import-rule': [
true,
{
ignoreAtRules: ["/^use$/"]
}
],
'scss/at-rule-no-unknown': true,
'import-notation': null,
'annotation-no-unknown': null,
},
};
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.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,
config: styleLintConfig,
}),
new EsLintPlugin({
baseConfig: esLintConfig,
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(),
...plugins,
],
externals: {
},
module: {
rules: [
{
test: /\.js$/i,
include: paths.sourcePath,
use: {
loader: 'babel-loader',
options: babelConfig,
}
},
{
test: /\.s[ac]ss$/i,
include: paths.sourcePath,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
{
loader: 'postcss-loader',
options: {
postcssOptions: postCssConfig
}
},
'sass-loader',
],
},
],
},
};
};
|