forked from jedireza/aqua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.js
85 lines (71 loc) · 1.93 KB
/
webpack.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
'use strict';
const Gulp = require('gulp');
const Gutil = require('gulp-util');
const Path = require('path');
const Webpack = require('webpack');
let executionCount = 0;
Gulp.task('webpack', (callback) => {
const plugins = [
new Webpack.optimize.CommonsChunkPlugin({
name: 'core',
filename: '../core.min.js',
minSize: 2
}),
new Webpack.DefinePlugin({
'process.env': {
'NODE_ENV': `"${process.env.NODE_ENV}"`
}
})
];
let devtool = 'source-map';
if (process.env.NODE_ENV === 'production') {
plugins.push(new Webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
}
}));
devtool = 'cheap-module-source-map';
}
const config = {
watch: global.isWatching,
entry: {
account: './client/pages/account/index',
admin: './client/pages/admin/index',
main: './client/pages/main/index'
},
output: {
path: Path.resolve(__dirname, '../public/pages'),
filename: '[name].min.js'
},
resolve: {
extensions: ['.js', '.jsx']
},
module: {
rules: [{
test: /\.jsx?$/,
include: [
Path.resolve(__dirname, '../client')
],
loader: 'babel-loader',
query: {
presets: ['react', 'es2015']
}
}]
},
devtool,
plugins
};
Webpack(config, (err, stats) => {
if (err) {
throw new Gutil.PluginError('webpack', err);
}
Gutil.log('[webpack]', stats.toString({
colors: true,
chunkModules: false
}));
if (executionCount === 0) {
callback();
}
executionCount += 1;
});
});