-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
127 lines (116 loc) · 2.96 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
/**
* Webpack Configuration.
*/
const path = require( 'path' );
const { ProvidePlugin } = require( 'webpack' );
const defaultConfig = require( '@wordpress/scripts/config/webpack.config' );
const WooCommerceDependencyExtractionWebpackPlugin = require( '@woocommerce/dependency-extraction-webpack-plugin' );
const MiniCssExtractPlugin = require( 'mini-css-extract-plugin' );
const wcDepMap = {
'@woocommerce/blocks-registry': ['wc', 'wcBlocksRegistry'],
'@woocommerce/settings' : ['wc', 'wcSettings'],
// '@woocommerce/icons' : ['wc', 'wcIcons'],
};
const wcHandleMap = {
'@woocommerce/blocks-registry': 'wc-blocks-registry',
'@woocommerce/settings' : 'wc-settings',
// '@woocommerce/icons' : 'wc-icons'
};
const requestToExternal = (request) => {
if (wcDepMap[request]) {
return wcDepMap[request];
}
};
const requestToHandle = (request) => {
if (wcHandleMap[request]) {
return wcHandleMap[request];
}
};
const CLIENT_DIR = path.resolve( __dirname, 'assets' );
const entry = {
index: CLIENT_DIR + '/blocks/index.js',
settings: CLIENT_DIR + '/admin/settings/index.js',
editor: CLIENT_DIR + '/admin/editor/index.js'
};
const rules = [
{
test: /\.(png|jpg|svg|jpeg|gif|ico)$/,
use: {
loader: 'file-loader',
},
},
{
test: /\.s[ac]ss$/i,
use: [
// Creates `style` nodes from JS strings
"style-loader",
// Translates CSS into CommonJS
"css-loader",
// Compiles Sass to CSS
"sass-loader",
],
},
];
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
}
),
new ProvidePlugin( {
process: 'process/browser.js',
} ),
new MiniCssExtractPlugin( { filename: 'style.css' } ),
],
resolve: {
extensions: [ '.json', '.js', '.jsx' ],
modules: [ CLIENT_DIR, 'node_modules' ],
alias: {
wcbudpay: CLIENT_DIR,
},
},
entry,
module: {
...defaultConfig.module,
rules: [
...defaultConfig.module.rules,
{
test: /\.s[ac]ss$/i,
use: [
MiniCssExtractPlugin.loader,
// Creates `style` nodes from JS strings
"style-loader",
// Translates CSS into CommonJS
"css-loader",
// Compiles Sass to CSS
"sass-loader",
],
},
],
},
};