-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
124 lines (116 loc) · 3.18 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
const path = require('path');
const HappyPack = require('happypack');
const WebpackMd5Hash = require('webpack-md5-hash');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const devServer = require('@webpack-blocks/dev-server2');
const {
addPlugins,
createConfig,
entryPoint,
env,
setOutput,
sourceMaps,
defineConstants,
webpack
} = require('@webpack-blocks/webpack2');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const StringReplacePlugin = require('string-replace-webpack-plugin');
const OfflinePlugin = require('offline-plugin');
const host = process.env.HOST || 'localhost';
const port = process.env.PORT || 3000;
const publicPath = `/${process.env.PUBLIC_PATH || ''}/`.replace('//', '/');
const sourcePath = path.join(__dirname, 'src');
const outputPath = path.join(__dirname, 'dist');
const isVendor = ({ userRequest }) =>
userRequest &&
userRequest.indexOf('node_modules') >= 0 &&
userRequest.match(/\.js$/);
const config = createConfig([
entryPoint([
'babel-regenerator-runtime',
sourcePath
]),
setOutput({
filename: '[name].[hash].js',
path: outputPath,
publicPath
}),
defineConstants({
'process.env.NODE_ENV': process.env.NODE_ENV,
'process.env.PUBLIC_PATH': publicPath
}),
addPlugins([
new HappyPack({
loaders: ['babel-loader'],
cacheContext: {
env: process.env.NODE_ENV
},
}),
new HtmlWebpackPlugin({
filename: 'index.html',
template: path.join(__dirname, 'public/index.html')
})
]),
() => ({
resolve: {
modules: ['src', 'node_modules']
},
module: {
rules: [
{
test: /\.jsx?$/,
loader: 'happypack/loader',
exclude: /node_modules/,
},
{
test: /\.jsx?$/,
loader: StringReplacePlugin.replace({
replacements: [
{
pattern: /print\((.*)\);?/ig,
replacement: function(match, p1, offset, string) {
return `console.log(${p1})`;
}
}
]
})
},
{ test: /\.(png|jpe?g|svg)$/, loader: 'url-loader?&limit=8000' },
{ test: /\.(woff2?|ttf|eot)$/, loader: 'url-loader?&limit=8000' },
]
}
}),
env('development', [
devServer({
contentBase: 'public',
stats: 'errors-only',
publicPath,
host,
port
}),
sourceMaps(),
addPlugins([new webpack.NamedModulesPlugin()])
]),
env('production', [
setOutput({
filename: '[name].[chunkHash].js',
path: outputPath,
publicPath
}),
addPlugins([
new CleanWebpackPlugin(['dist'], { root: path.join(__dirname, '..') }),
new CopyWebpackPlugin([{ from: 'public' }]),
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: isVendor
}),
new WebpackMd5Hash(),
new webpack.optimize.UglifyJsPlugin({ compress: { warnings: false } }),
new OfflinePlugin(),
// new BundleAnalyzerPlugin(),
])
])
]);
module.exports = config;