-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathwebpack.config.js
More file actions
47 lines (42 loc) · 1.28 KB
/
webpack.config.js
File metadata and controls
47 lines (42 loc) · 1.28 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
const defaultConfig = require('@wordpress/scripts/config/webpack.config');
const WooCommerceDependencyExtractionWebpackPlugin = require('@woocommerce/dependency-extraction-webpack-plugin');
const path = require('path');
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];
}
};
// Export configuration.
module.exports = {
...defaultConfig,
entry: {
'frontend/pix': '/public/js/blocks/checkout-blocks-pix.js',
'frontend/boleto': '/public/js/blocks/checkout-blocks-boleto.js',
'frontend/cc': '/public/js/blocks/checkout-blocks-cc.js',
'frontend/redirect': '/public/js/blocks/checkout-blocks-redirect.js',
},
output: {
path: path.resolve( __dirname, 'build/js' ),
filename: '[name].js',
},
plugins: [
...defaultConfig.plugins.filter(
(plugin) =>
plugin.constructor.name !== 'DependencyExtractionWebpackPlugin'
),
new WooCommerceDependencyExtractionWebpackPlugin()
]
};