-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
73 lines (69 loc) · 1.73 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
/**
* External dependencies
*/
const path = require( 'path' );
const glob = require( 'glob' );
const CleanWebpackPlugin = require( 'clean-webpack-plugin' );
const MiniCssExtractPlugin = require( 'mini-css-extract-plugin' );
const NODE_ENV = process.env.NODE_ENV || 'development';
const externals = {
'@wordpress/api-fetch': { this: [ 'wp', 'apiFetch' ] },
'@wordpress/blocks': { this: [ 'wp', 'blocks' ] },
'@wordpress/components': { this: [ 'wp', 'components' ] },
'@wordpress/compose': { this: [ 'wp', 'compose' ] },
'@wordpress/editor': { this: [ 'wp', 'editor' ] },
'@wordpress/element': { this: [ 'wp', 'element' ] },
'@wordpress/i18n': { this: [ 'wp', 'i18n' ] },
};
/**
* Automatically build any top-level files in the `js` directory.
*/
const entryPoints = glob.sync( './assets/js/*.js' ).reduce( ( acc, item ) => {
const name = path.basename( item ).replace( '.js', '' );
acc[ name ] = item;
return acc;
}, {} );
/**
* Config for compiling Gutenberg blocks JS.
*/
const GutenbergBlocksConfig = {
mode: NODE_ENV,
externals,
entry: entryPoints,
output: {
path: path.resolve( __dirname, './build/' ),
filename: '[name].js',
libraryTarget: 'this',
},
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel-loader',
},
{
test: /\.s[c|a]ss$/,
use: [
'style-loader',
MiniCssExtractPlugin.loader,
'css-loader',
{
loader: 'postcss-loader',
options: {
plugins: [ require( 'autoprefixer' )( { browsers: [ '>1%' ] } ) ],
},
},
'sass-loader',
],
},
],
},
plugins: [
new CleanWebpackPlugin( 'build', {} ),
new MiniCssExtractPlugin( {
filename: '[name].css',
} ),
],
};
module.exports = [ GutenbergBlocksConfig ];