forked from google/site-kit-wp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
464 lines (437 loc) · 11.9 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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
/**
* Webpack config.
*
* Site Kit by Google, Copyright 2021 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Node dependencies
*/
const fs = require( 'fs' );
const path = require( 'path' );
/**
* External dependencies
*/
const CircularDependencyPlugin = require( 'circular-dependency-plugin' );
const ESLintPlugin = require( 'eslint-webpack-plugin' );
const MiniCssExtractPlugin = require( 'mini-css-extract-plugin' );
const TerserPlugin = require( 'terser-webpack-plugin' );
const WebpackBar = require( 'webpackbar' );
const { DefinePlugin, ProvidePlugin } = require( 'webpack' );
const { BundleAnalyzerPlugin } = require( 'webpack-bundle-analyzer' );
const CreateFileWebpack = require( 'create-file-webpack' );
const ManifestPlugin = require( 'webpack-manifest-plugin' );
const features = require( './feature-flags.json' );
const projectPath = ( relativePath ) => {
return path.resolve( fs.realpathSync( process.cwd() ), relativePath );
};
const manifestTemplate = `<?php
/**
* Class Google\\Site_Kit\\Core\\Assets\\Manifest
*
* @package Google\Site_Kit
* @copyright ${ new Date().getFullYear() } Google LLC
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @link https://sitekit.withgoogle.com
*/
namespace Google\\Site_Kit\\Core\\Assets;
/**
* Assets manifest.
*
* @since 1.15.0
* @access private
* @ignore
*/
class Manifest {
public static $assets = array(
{{assets}}
);
}
`;
const noAMDParserRule = { parser: { amd: false } };
const siteKitExternals = {
'googlesitekit-api': [ 'googlesitekit', 'api' ],
'googlesitekit-data': [ 'googlesitekit', 'data' ],
'googlesitekit-modules': [ 'googlesitekit', 'modules' ],
'googlesitekit-widgets': [ 'googlesitekit', 'widgets' ],
'@wordpress/i18n': [ 'googlesitekit', 'i18n' ],
};
const externals = { ...siteKitExternals };
const svgRule = {
test: /\.svg$/,
use: [
{
loader: '@svgr/webpack',
options: {
// strip width & height to allow manual override using props
dimensions: false,
},
},
],
};
const rules = [
noAMDParserRule,
svgRule,
{
test: /\.js$/,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader',
options: {
babelrc: false,
configFile: false,
cacheDirectory: true,
presets: [ '@wordpress/default', '@babel/preset-react' ],
},
},
],
...noAMDParserRule,
},
];
const resolve = {
alias: {
'@wordpress/api-fetch__non-shim': require.resolve(
'@wordpress/api-fetch'
),
'@wordpress/api-fetch$': path.resolve( 'assets/js/api-fetch-shim.js' ),
'@wordpress/i18n__non-shim': require.resolve( '@wordpress/i18n' ),
},
modules: [ projectPath( '.' ), 'node_modules' ],
};
// Get the app version from the google-site-kit.php file - optional chaining operator not supported here
const googleSiteKitFile = fs.readFileSync(
path.resolve( __dirname, 'google-site-kit.php' ),
'utf8'
);
const googleSiteKitVersion = googleSiteKitFile.match(
/(?<='GOOGLESITEKIT_VERSION',\s+')\d+.\d+.\d+(?=')/gi
);
const GOOGLESITEKIT_VERSION = googleSiteKitVersion
? googleSiteKitVersion[ 0 ]
: '';
function* webpackConfig( env, argv ) {
const { mode, flagMode = mode } = argv;
const { ANALYZE } = env || {};
// Build the settings js..
yield {
entry: {
// New Modules (Post-JSR).
'googlesitekit-api': './assets/js/googlesitekit-api.js',
'googlesitekit-data': './assets/js/googlesitekit-data.js',
'googlesitekit-datastore-site':
'./assets/js/googlesitekit-datastore-site.js',
'googlesitekit-datastore-user':
'./assets/js/googlesitekit-datastore-user.js',
'googlesitekit-datastore-forms':
'./assets/js/googlesitekit-datastore-forms.js',
'googlesitekit-datastore-location':
'./assets/js/googlesitekit-datastore-location.js',
'googlesitekit-datastore-ui':
'./assets/js/googlesitekit-datastore-ui.js',
'googlesitekit-modules': './assets/js/googlesitekit-modules.js',
'googlesitekit-widgets': './assets/js/googlesitekit-widgets.js',
'googlesitekit-modules-adsense':
'./assets/js/googlesitekit-modules-adsense.js',
'googlesitekit-modules-analytics':
'./assets/js/googlesitekit-modules-analytics.js',
'googlesitekit-modules-analytics-4':
'./assets/js/googlesitekit-modules-analytics-4.js',
'googlesitekit-modules-idea-hub':
'./assets/js/googlesitekit-modules-idea-hub.js',
'googlesitekit-modules-optimize':
'./assets/js/googlesitekit-modules-optimize.js',
'googlesitekit-modules-pagespeed-insights':
'assets/js/googlesitekit-modules-pagespeed-insights.js',
'googlesitekit-modules-search-console':
'./assets/js/googlesitekit-modules-search-console.js',
'googlesitekit-modules-tagmanager':
'./assets/js/googlesitekit-modules-tagmanager.js',
'googlesitekit-user-input':
'./assets/js/googlesitekit-user-input.js',
'googlesitekit-idea-hub-post-list-notice':
'./assets/js/googlesitekit-idea-hub-post-list-notice.js',
'googlesitekit-idea-hub-notice':
'./assets/js/googlesitekit-idea-hub-notice.js',
// Old Modules
'googlesitekit-activation':
'./assets/js/googlesitekit-activation.js',
'googlesitekit-adminbar': './assets/js/googlesitekit-adminbar.js',
'googlesitekit-settings': './assets/js/googlesitekit-settings.js',
'googlesitekit-dashboard': './assets/js/googlesitekit-dashboard.js',
'googlesitekit-dashboard-details':
'./assets/js/googlesitekit-dashboard-details.js',
'googlesitekit-dashboard-splash':
'./assets/js/googlesitekit-dashboard-splash.js',
'googlesitekit-wp-dashboard':
'./assets/js/googlesitekit-wp-dashboard.js',
'googlesitekit-base': './assets/js/googlesitekit-base.js',
'googlesitekit-module': './assets/js/googlesitekit-module.js',
},
externals,
output: {
filename:
mode === 'production' ? '[name].[contenthash].js' : '[name].js',
path: path.join( __dirname, 'dist/assets/js' ),
chunkFilename:
mode === 'production' ? '[name].[chunkhash].js' : '[name].js',
publicPath: '',
/*
If multiple webpack runtimes (from different compilations) are used on the
same webpage, there is a risk of conflicts of on-demand chunks in the global
namespace.
See: https://webpack.js.org/configuration/output/#outputjsonpfunction.
*/
jsonpFunction: '__googlesitekit_webpackJsonp',
},
performance: {
maxEntrypointSize: 175000,
},
module: {
rules: [ ...rules ],
},
plugins: [
new ProvidePlugin( {
React: 'react',
} ),
new WebpackBar( {
name: 'Module Entry Points',
color: '#fbbc05',
} ),
new CircularDependencyPlugin( {
exclude: /node_modules/,
failOnError: true,
allowAsyncCycles: false,
cwd: process.cwd(),
} ),
new CreateFileWebpack( {
path: './dist',
fileName: 'config.json',
content: JSON.stringify( {
buildMode: flagMode,
features,
} ),
} ),
new ManifestPlugin( {
fileName: path.resolve(
__dirname,
'includes/Core/Assets/Manifest.php'
),
filter( file ) {
return ( file.name || '' ).match( /\.js$/ );
},
serialize( manifest ) {
const maxLen = Math.max(
...Object.keys( manifest ).map( ( key ) => key.length )
);
const content = manifestTemplate.replace(
'{{assets}}',
Object.keys( manifest )
.map(
( key ) =>
`"${ key.replace(
'.js',
''
) }"${ ''.padEnd(
maxLen - key.length,
' '
) } => "${ manifest[ key ] }",`
)
.join( '\n\t\t' )
);
return content;
},
} ),
new DefinePlugin( {
'global.GOOGLESITEKIT_VERSION': JSON.stringify(
GOOGLESITEKIT_VERSION
),
} ),
new ESLintPlugin( {
emitError: true,
emitWarning: true,
failOnError: true,
} ),
...( ANALYZE ? [ new BundleAnalyzerPlugin() ] : [] ),
],
optimization: {
minimizer: [
new TerserPlugin( {
parallel: true,
sourceMap: false,
cache: true,
terserOptions: {
// We preserve function names that start with capital letters as
// they're _likely_ component names, and these are useful to have
// in tracebacks and error messages.
keep_fnames: /__|_x|_n|_nx|sprintf|^[A-Z].+$/,
output: {
comments: /translators:/i,
},
},
extractComments: false,
} ),
],
/*
The runtimeChunk value 'single' creates a runtime file to be shared for all generated chunks.
Without this, imported modules are initialized for each runtime chunk separately which
results in duplicate module initialization when a shared module is imported by separate entries
on the same page.
See: https://v4.webpack.js.org/configuration/optimization/#optimizationruntimechunk
*/
runtimeChunk: 'single',
splitChunks: {
cacheGroups: {
vendor: {
chunks: 'initial',
name: 'googlesitekit-vendor',
filename:
mode === 'production'
? 'googlesitekit-vendor.[contenthash].js'
: 'googlesitekit-vendor.js',
enforce: true,
test: /[\\/]node_modules[\\/]/,
},
},
},
},
resolve,
};
if ( ANALYZE ) {
return;
}
// Build basic modules that don't require advanced optimizations, splitting chunks, and so on...
yield {
entry: {
'googlesitekit-i18n': './assets/js/googlesitekit-i18n.js',
// Analytics advanced tracking script to be injected in the frontend.
'analytics-advanced-tracking':
'./assets/js/analytics-advanced-tracking.js',
},
externals,
output: {
filename: '[name].js',
path: __dirname + '/dist/assets/js',
publicPath: '',
},
module: {
rules,
},
plugins: [
new WebpackBar( {
name: 'Basic Modules',
color: '#fb1105',
} ),
],
optimization: {
concatenateModules: true,
},
resolve,
};
// Build the main plugin admin css.
yield {
entry: {
admin: './assets/sass/admin.scss',
adminbar: './assets/sass/adminbar.scss',
wpdashboard: './assets/sass/wpdashboard.scss',
},
module: {
rules: [
{
test: /\.scss$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
'postcss-loader',
{
loader: 'sass-loader',
options: {
implementation: require( 'sass' ),
sassOptions: {
includePaths: [ 'node_modules' ],
},
},
},
],
},
{
test: /\.(png|woff|woff2|eot|ttf|gif)$/,
use: { loader: 'url-loader?limit=100000' },
},
],
},
plugins: [
new MiniCssExtractPlugin( {
filename: '/assets/css/[name].css',
} ),
new WebpackBar( {
name: 'Plugin CSS',
color: '#4285f4',
} ),
],
};
}
function testBundle() {
return {
entry: {
'e2e-api-fetch': './tests/e2e/assets/e2e-api-fetch.js',
'e2e-redux-logger': './tests/e2e/assets/e2e-redux-logger.js',
},
output: {
filename: '[name].js',
path: __dirname + '/dist/assets/js',
chunkFilename: '[name].js',
publicPath: '',
},
module: {
rules,
},
plugins: [
new WebpackBar( {
name: 'Test files',
color: '#34a853',
} ),
],
externals,
resolve,
};
}
module.exports = {
externals,
noAMDParserRule,
projectPath,
resolve,
rules,
siteKitExternals,
svgRule,
};
module.exports.default = ( env, argv ) => {
const configs = [];
const configGenerator = webpackConfig( env, argv );
for ( const config of configGenerator ) {
configs.push( {
...config,
stats: 'errors-warnings',
} );
}
const { includeTests, mode } = argv;
if ( mode !== 'production' || includeTests ) {
// Build the test files if we aren't doing a production build.
configs.push( {
...testBundle(),
stats: 'errors-warnings',
} );
}
return configs;
};