-
Notifications
You must be signed in to change notification settings - Fork 9
/
webpack.config.js
221 lines (207 loc) · 5.76 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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
const path = require('path');
const { WebpackManifestPlugin } = require('webpack-manifest-plugin');
const WebpackNotifierPlugin = require('webpack-notifier');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const BrowserSyncPlugin = require('browser-sync-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const RemoveEmptyScripts = require('webpack-remove-empty-scripts');
const CssMinimizerWebpackPlugin = require('css-minimizer-webpack-plugin');
const { getIfUtils, removeEmpty } = require('webpack-config-utils');
const { ifProduction } = getIfUtils(process.env.NODE_ENV);
module.exports = {
mode: ifProduction('production', 'development'),
/**
* Add your entry files here
*/
entry: {
'js/modularity-editor-modal': './source/js/modularity-editor-modal.js',
'js/modularity-text-module': './source/js/modularity-text-module.ts',
'js/modularity': './source/js/modularity.js',
'css/modularity': './source/sass/modularity.scss',
'css/modularity-thickbox-edit': './source/sass/modularity-thickbox-edit.scss',
//Admin
'js/dynamic-acf': './source/js/admin/dynamic-acf.js',
'js/dynamic-map-acf': './source/js/admin/dynamic-map-acf.js',
'js/block-validation': './source/js/block-validation.ts',
'js/edit-modules-block-editor': './source/js/edit-modules-block-editor.ts',
// Acf
'js/hidden-post-status-conditional': './source/js/acf/hidden-post-status-conditional.ts',
'css/acf': './source/sass/acf/acf.scss',
//Modules
'js/mod-curator-load-more': './source/php/Module/Curator/assets/mod-curator-load-more.js',
'js/table-init': './source/php/Module/Table/assets/table-init.js',
'css/table': './source/php/Module/Table/assets/table.scss',
'js/video': './source/php/Module/Video/assets/video.js',
'css/video': './source/php/Module/Video/assets/video.scss',
'js/manual-input-private': './source/php/Module/ManualInput/assets/private.ts',
'js/ungapd': './source/php/Module/Subscribe/assets/ungapd.ts',
'js/mod-posts-taxonomy-filtering': './source/php/Module/Posts/assets/taxonomyFiltering.js',
'css/menu': './source/php/Module/Menu/assets/menu.scss',
},
/**
* Output settings
*/
output: {
filename: ifProduction('[name].[contenthash].js', '[name].js'),
path: path.resolve(__dirname, 'dist'),
publicPath: '',
},
/**
* Define external dependencies here
*/
externals: {},
module: {
rules: [
/**
* Babel
*/
{
test: /\.js?/,
exclude: /(node_modules|bower_components)/,
use: {
loader: 'babel-loader',
options: {
// Babel config here
presets: ['@babel/preset-env', '@babel/preset-react'],
plugins: [
'@babel/plugin-syntax-dynamic-import',
'@babel/plugin-proposal-export-default-from',
'@babel/plugin-proposal-class-properties',
],
},
},
},
/**
* Styles
*/
{
test: /\.(sa|sc|c)ss$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
importLoaders: 3, // 0 => no loaders (default); 1 => postcss-loader; 2 => sass-loader
},
},
{
loader: 'postcss-loader',
options: {},
},
{
loader: 'sass-loader',
options: {},
},
'import-glob-loader',
],
},
/**
* Images
*/
{
test: /\.(png|svg|jpg|gif)$/,
type: 'asset/resource',
generator: {
filename: 'images/action_icons/[name][ext]',
},
},
/**
* TypeScript
*/
{
test: /\.ts?$/,
loader: 'ts-loader',
options: { allowTsInNodeModules: true }
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
plugins: removeEmpty([
/**
* BrowserSync
*/
typeof process.env.BROWSER_SYNC_PROXY_URL !== 'undefined'
? new BrowserSyncPlugin(
// BrowserSync options
{
// browse to http://localhost:3000/ during development
host: 'localhost',
port: process.env.BROWSER_SYNC_PORT ? process.env.BROWSER_SYNC_PORT : 3000,
// proxy the Webpack Dev Server endpoint
// (which should be serving on http://localhost:3100/)
// through BrowserSync
proxy: process.env.BROWSER_SYNC_PROXY_URL,
},
// plugin options
{
// prevent BrowserSync from reloading the page
// and let Webpack Dev Server take care of this
reload: false,
}
)
: null,
/**
* Fix CSS entry chunks generating js file
*/
new RemoveEmptyScripts(),
/**
* Clean dist folder
*/
new CleanWebpackPlugin(),
/**
* Output CSS files
*/
new MiniCssExtractPlugin({
filename: ifProduction('[name].[contenthash:8].css', '[name].css'),
}),
/**
* Output manifest.json for cache busting
*/
new WebpackManifestPlugin({
// Filter manifest items
filter: function (file) {
// Don't include source maps
if (file.path.match(/\.(map)$/)) {
return false;
}
return true;
},
// Custom mapping of manifest item goes here
map: function (file) {
// Fix incorrect key for fonts
if (file.isAsset && file.isModuleAsset && file.path.match(/\.(woff|woff2|eot|ttf|otf)$/)) {
const pathParts = file.path.split('.');
const nameParts = file.name.split('.');
// Compare extensions
if (pathParts[pathParts.length - 1] !== nameParts[nameParts.length - 1]) {
file.name = pathParts[0].concat('.', pathParts[pathParts.length - 1]);
}
}
return file;
},
}),
/**
* Enable build OS notifications (when using watch command)
*/
new WebpackNotifierPlugin({ alwaysNotify: true, skipFirstNotification: true }),
/**
* Minimize CSS assets
*/
ifProduction(
new CssMinimizerWebpackPlugin({
minimizerOptions: {
preset: [
'default',
{
discardComments: { removeAll: true },
},
],
},
})
),
]).filter(Boolean),
devtool: 'source-map',
stats: { children: false },
};