forked from eventespresso/event-espresso-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.prod.js
80 lines (80 loc) · 1.97 KB
/
webpack.prod.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
const merge = require( 'webpack-merge' );
const WebpackAssetsManifest = require( 'webpack-assets-manifest' );
const path = require( 'path' );
const common = require( './webpack.common.js' );
const webpack = require( 'webpack' );
const miniExtract = require( 'mini-css-extract-plugin' );
const wpi18nExtractor = require( './bin/i18n-map-extractor.js' );
const assetsData = Object.create( null );
const DependencyExtractionWebpackPlugin = require(
'@wordpress/dependency-extraction-webpack-plugin'
);
const { requestToExternal, requestToHandle } = require(
'./bin/asset-dependency-maps'
);
const pluginsConfigWithExtraction = [
new webpack.DefinePlugin( {
'process.env': {
NODE_ENV: JSON.stringify( 'production' ),
},
} ),
new wpi18nExtractor( {
excludes: [
'eejs-core',
'eventespresso-vendor',
'eventespresso-core-css-default',
],
} ),
new webpack.ProvidePlugin( {
React: 'react',
} ),
new DependencyExtractionWebpackPlugin( {
requestToExternal,
requestToHandle,
} ),
new WebpackAssetsManifest( {
output: path.resolve( __dirname,
'assets/dist/build-manifest.json',
),
assets: assetsData,
} ),
new miniExtract( {
filename: '[name].[contenthash].dist.css',
} ),
];
const pluginsConfigWithoutExtraction = [
new webpack.DefinePlugin( {
'process.env': {
NODE_ENV: JSON.stringify( 'production' ),
},
} ),
new wpi18nExtractor( {
excludes: [
'eejs-core',
'eventespresso-vendor',
'eventespresso-core-css-default',
],
} ),
new webpack.ProvidePlugin( {
React: 'react',
} ),
new WebpackAssetsManifest( {
output: path.resolve( __dirname,
'assets/dist/build-manifest.json',
),
assets: assetsData,
} ),
new miniExtract( {
filename: '[name].[contenthash].dist.css',
} ),
];
common.forEach( ( config, index ) => {
const plugins = config.entry[ 'eventespresso-vendor' ] ?
pluginsConfigWithoutExtraction :
pluginsConfigWithExtraction;
common[ index ] = merge( config, {
plugins,
mode: 'production',
} );
} );
module.exports = common;