-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.js
189 lines (160 loc) · 4.38 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
const path = require('path');
const webpack = require('webpack');
const CopyWebpackPlugin = require('copy-webpack-plugin');
//const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const ImageminPlugin = require('imagemin-webpack-plugin').default;
//const WebpackRTLPlugin = require( 'webpack-rtl-plugin' );
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
const {exec} = require('child_process');
const inProduction = ('production' === process.env.NODE_ENV);
/*
// Removed these packages due to the lack of need for a SASS-parser
"node-sass": "^4.12.0",
"sass-loader": "^7.1.0",
"mini-css-extract-plugin": "^0.6.0",
"css-loader": "^2.1.1",
"postcss-loader": "^3.0.0",
"cssnano": "^4.1.10",
*/
const config = {
// https://github.com/webpack-contrib/css-loader/issues/447
node: {
fs: 'empty',
},
// https://webpack.js.org/migrate/4/#mode
mode: process.env.NODE_ENV,
// Ensure modules like magnific know jQuery is external (loaded via WP).
externals: {
$: 'jQuery',
jquery: 'jQuery',
lodash: 'lodash',
react: 'React',
localStorage: 'localStorage',
},
devtool: 'source-map',
module: {
rules: [
// Use Babel to compile JS.
{
test: /\.js$/,
exclude: /node_modules/,
loaders: [
'babel-loader',
]
},
// Create RTL styles.
/*
{
test: /\.css$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
// you can specify a publicPath here
// by default it uses publicPath in webpackOptions.output
publicPath: '../',
hmr: process.env.NODE_ENV === 'development',
},
},
'css-loader',
],
},
*/
// SASS to CSS.
/*
{
test: /\.scss$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
hmr: process.env.NODE_ENV === 'development',
},
},
'css-loader',
'postcss-loader',
'sass-loader',
],
},
*/
// Image files.
{
test: /\.(png|jpe?g|gif)$/,
use: [
{
loader: 'file-loader',
options: {
name: 'images/[name].[ext]',
publicPath: '../',
},
},
],
},
// SVG files.
{
test: /.svg$/,
use: [
{
loader: 'svg-react-loader',
},
],
},
],
},
// Plugins. Gotta have em'.
plugins: [
new ProgressBarPlugin({clear: false}),
//new MiniCssExtractPlugin({filename: 'css/block-editor-menu.css'}),
// Copy CSS-files
new CopyWebpackPlugin([{from: '*.css', to: 'css', 'context': 'assets/src/css/'}]),
// Copy JS-files
new CopyWebpackPlugin([{from: '*.js', to: 'js', 'context': 'assets/src/js/'}]),
// Copy images and SVGs
new CopyWebpackPlugin([{from: 'assets/src/images', to: 'images'}]),
// Copy index.php to all dist directories.
new CopyWebpackPlugin([{from: 'index.php', to: '.'}]),
new CopyWebpackPlugin([{from: 'index.php', to: './images'}]),
new CopyWebpackPlugin([{from: 'index.php', to: './js'}]),
new CopyWebpackPlugin([{from: 'index.php', to: './css'}]),
// Minify images.
// Must go after CopyWebpackPlugin above: https://github.com/Klathmon/imagemin-webpack-plugin#example-usage
new ImageminPlugin({test: /\.(jpe?g|png|gif|svg)$/i}),
],
};
module.exports = [
/*
Object.assign( {
entry: {
blocks: './packages/blocks/index.js',
},
// Tell webpack where to output.
output: {
path: path.resolve( __dirname, './assets/dist/' ),
filename: 'js/[name].js',
},
}, config ),
*/
Object.assign({
entry: {
plugin: ['./assets/src/js/block-editor/block-editor-cache-purge-menu.js'],
},
output: {
path: path.resolve(__dirname, './assets/dist/'),
filename: 'js/block-editor-cache-purge-menu.js',
},
}, config),
];
// inProd?
if (inProduction) {
exec('wp i18n make-pot . languages/servebolt-optimizer.pot --domain="servebolt-wp" --exclude=assets/dist,ci/,src/Dependencies,tests/,vendor/');
// Uglify JS.
config.optimization = {
minimizer: [
new UglifyJsPlugin({sourceMap: true})
]
};
//config.plugins.push( );
// Minify CSS.
config.plugins.push(new webpack.LoaderOptionsPlugin({minimize: true}));
}