-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwebpack.config.js
More file actions
93 lines (83 loc) · 2.09 KB
/
webpack.config.js
File metadata and controls
93 lines (83 loc) · 2.09 KB
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
/**
* Webpack Configuration.
*/
const path = require( 'path' );
const webpack = require( 'webpack' );
const defaultConfig = require( '@wordpress/scripts/config/webpack.config' );
const WooCommerceDependencyExtractionWebpackPlugin = require( '@woocommerce/dependency-extraction-webpack-plugin' );
const wcDepMap = {
'@woocommerce/blocks-registry': ['wc', 'wcBlocksRegistry'],
'@woocommerce/settings' : ['wc', 'wcSettings']
};
const wcHandleMap = {
'@woocommerce/blocks-registry': 'wc-blocks-registry',
'@woocommerce/settings' : 'wc-settings'
};
const requestToExternal = (request) => {
if (wcDepMap[request]) {
return wcDepMap[request];
}
};
const requestToHandle = (request) => {
if (wcHandleMap[request]) {
return wcHandleMap[request];
}
};
const CLIENT_DIR = path.resolve( __dirname, 'client' );
const entry = {
index: CLIENT_DIR + '/blocks/index.js',
};
const rules = [
{
test: /\.(png|jpg|svg|jpeg|gif|ico)$/,
use: {
loader: 'file-loader',
options: {
name: 'img/[name].[ext]',
publicPath:
'production' === process.env.NODE_ENV ? '../' : '../../',
},
},
},
];
module.exports = {
...defaultConfig,
devtool:
process.env.NODE_ENV === 'production'
? 'hidden-source-map'
: defaultConfig.devtool,
optimization: {
...defaultConfig.optimization,
minimizer: [
...defaultConfig.optimization.minimizer.map( ( plugin ) => {
if ( plugin.constructor.name === 'TerserPlugin' ) {
// wp-scripts does not allow to override the Terser minimizer sourceMap option, without this
// `devtool: 'hidden-source-map'` is not generated for js files.
plugin.options.sourceMap = true;
}
return plugin;
} ),
],
splitChunks: undefined,
},
plugins: [
...defaultConfig.plugins.filter(
( plugin ) =>
plugin.constructor.name !== 'DependencyExtractionWebpackPlugin'
),
new WooCommerceDependencyExtractionWebpackPlugin(
{
requestToExternal,
requestToHandle
}
),
],
resolve: {
extensions: [ '.json', '.js', '.jsx' ],
modules: [ CLIENT_DIR, 'node_modules' ],
alias: {
wcflutterwave: CLIENT_DIR,
},
},
entry,
};