-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.js
103 lines (90 loc) · 2.02 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
/* eslint-disable indent */
/* eslint-disable import/no-extraneous-dependencies */
/* eslint-disable no-multi-spaces */
const webpack = require('webpack');
const path = require('path');
const validate = require('webpack-validator');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const HOST = 'localhost';
const PORT = process.env.PORT || 8080;
const PROD = process.env.NODE_ENV === 'production';
const entry = PROD ?
'./src/index.js' :
[
`webpack-dev-server/client?http://${HOST}:${PORT}`,
'webpack/hot/only-dev-server',
'./example/index.jsx'
];
const loaders = PROD ?
[
{
test: /\.jsx?$/,
include: path.join(__dirname, 'src'),
loaders: ['babel']
}
] :
[
{
test: /\.jsx?$/,
include: [
path.join(__dirname, 'src'),
path.join(__dirname, 'example')
],
loaders: [
'react-hot',
'babel'
]
},
{
test: /\.json$/,
include: path.join(__dirname, 'example'),
loader: 'json'
},
{
test: /\.css$/,
loader: 'style-loader!css-loader',
include: path.join(__dirname, 'example')
},
{
test: /\.scss$/,
loader: 'style-loader!css-loader!sass-loader?sourceMap',
include: path.join(__dirname, 'example')
}
];
const plugins = PROD ?
[
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
},
mangle: false
})
] :
[
new HtmlWebpackPlugin({ template: 'example/index.html' }),
new webpack.HotModuleReplacementPlugin()
];
module.exports = validate({
entry,
output: {
path: path.join(__dirname, 'dist'),
filename: 'index.js',
libraryTarget: PROD ? 'umd' : undefined
},
module: {
loaders
},
plugins,
devtool: PROD ? 'source-map' : 'eval-source-map',
devServer: {
historyApiFallback: true,
hot: true,
inline: true,
stats: 'errors-only',
host: HOST,
port: PORT
},
resolve: {
extensions: ['', '.js', '.jsx', '.json']
}
});