-
Notifications
You must be signed in to change notification settings - Fork 228
/
webpack.config.js
106 lines (94 loc) · 2.29 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
/**
* Grunt webpack task config
*
* @package
*/
const path = require( 'path' );
const defaultConfig = require( '@wordpress/scripts/config/webpack.config' );
const TerserPlugin = require( 'terser-webpack-plugin' );
const entry = {
'hello-editor': path.resolve( __dirname, './assets/dev/js/editor/hello-editor.js' ),
'hello-frontend': path.resolve( __dirname, './assets/dev/js/frontend/hello-frontend.js' ),
'hello-admin': path.resolve( __dirname, './assets/dev/js/admin/hello-admin.js' ),
};
const moduleRules = {
rules: [
...defaultConfig.module.rules,
{
test: /\.js$/,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader',
options: {
presets: [ '@babel/preset-env', '@babel/preset-react' ],
plugins: [
[ '@babel/plugin-proposal-class-properties' ],
[ '@babel/plugin-transform-runtime' ],
[ '@babel/plugin-transform-modules-commonjs' ],
[ '@babel/plugin-proposal-optional-chaining' ],
],
},
},
],
},
],
};
const commonConfig = {
...defaultConfig,
target: 'web',
context: __dirname,
module: moduleRules,
entry,
output: {
...defaultConfig.output,
path: path.resolve( __dirname, './assets/js' ),
filename: '[name].js',
},
};
const webpackConfig = {
...commonConfig,
mode: 'development',
output: {
...commonConfig.output,
devtoolModuleFilenameTemplate: './[resource]',
},
entry: {
...entry,
},
devtool: 'source-map',
};
const webpackProductionConfig = {
...commonConfig,
mode: 'production',
optimization: {
...defaultConfig.optimization || {},
minimize: false,
minimizer: [
new TerserPlugin( {
terserOptions: {
keep_fnames: true,
},
include: /\.min\.js$/,
} ),
],
},
performance: { hints: false },
};
// Add minified entry points
Object.entries( webpackProductionConfig.entry ).forEach( ( [ wpEntry, value ] ) => {
webpackProductionConfig.entry[ wpEntry + '.min' ] = value;
} );
webpackProductionConfig.plugins = defaultConfig.plugins;
module.exports = ( env ) => {
if ( env.developmentLocal ) {
return { ...webpackConfig, watch: true };
}
if ( env.production ) {
return webpackProductionConfig;
}
if ( env.development ) {
return webpackConfig;
}
throw new Error( 'missing or invalid --env= development/production/developmentWithWatch/productionWithWatch' );
};