-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathwebpack.config.js
84 lines (79 loc) · 1.53 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
/**
* Webpack configuration file.
*
* @package transcoder
*/
/* global process */
const webpack = require( 'webpack' );
const glob = require( 'glob' );
const TerserPlugin = require( 'terser-webpack-plugin' );
const externals = {
react: 'React',
'react-dom': 'ReactDOM',
'react-dom/server': 'ReactDOMServer',
tinymce: 'tinymce',
moment: 'moment',
jquery: 'jQuery',
'@wordpress/components': 'wp.components' // Not really a package.
};
module.exports = [
{
entry: {
blocks: glob.sync( './admin/js/rt-transcoder-block-editor-support.js' )
},
output: {
filename: './admin/js/build/rt-transcoder-block-editor-support.build.js',
path: __dirname
},
externals,
resolve: {
modules: [
__dirname,
'node_modules'
]
},
module: {
rules: [
{
test: /.js?$/,
loader: 'babel-loader',
exclude: /node_modules/
}
]
},
plugins: [
new webpack.DefinePlugin( {
'process.env.NODE_ENV': JSON.stringify( process.env.NODE_ENV || 'development' )
} )
]
},
{
entry: './public-assets/js/transcoder.js',
output: {
filename: './public-assets/js/build/transcoder.min.js',
path: __dirname
}
}
];
if (process.env.NODE_ENV === 'production') {
for (var moduleConfig of module.exports) {
moduleConfig.optimization = {
minimize: true,
minimizer: [
new TerserPlugin({
extractComments: false,
terserOptions: {
ecma: 8,
compress: {
warnings: false
},
output: {
comments: false
},
sourceMap: true
}
})
]
};
}
}