-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.js
executable file
·165 lines (150 loc) · 3.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
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
const webpack = require('webpack');
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const NODE_ENV = process.env.NODE_ENV || 'development';
const EXAMPLE = process.env.EXAMPLE || 'false';
const isExample = EXAMPLE === 'true';
const isProduction = NODE_ENV === 'production';
const distPath = path.join(__dirname, './dist');
const exampleDistPath = path.join(__dirname, './dist-docs');
const sourcePath = path.join(__dirname, './source');
const docsPath = path.join(__dirname, './docs');
const outputDistPath = isExample ? exampleDistPath : distPath;
// Common plugins
const plugins = [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(NODE_ENV),
},
}),
];
const entry = {};
// Common rules
const rules = [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: [
'babel-loader',
],
},
// {
// test: /\.(png|gif|jpg|svg)$/,
// include: imgPath,
// use: 'url-loader?limit=20480&name=assets/[name]-[hash].[ext]',
// },
];
if (isProduction) {
// Production entry points
entry['docs.min'] = path.join(docsPath, 'docs.js');
// Production plugins
plugins.push(
new webpack.optimize.UglifyJsPlugin({
include: /\.min\.js$/,
compress: {
warnings: false,
screw_ie8: true,
conditionals: true,
unused: true,
comparisons: true,
sequences: true,
dead_code: true,
evaluate: true,
if_return: true,
join_vars: true,
},
output: {
comments: false,
},
}),
new ExtractTextPlugin('demo.css')
);
if (isExample) {
plugins.push(
new HtmlWebpackPlugin({
template: path.join(docsPath, 'index.html'),
path: outputDistPath,
filename: 'index.html',
})
);
}
// Production rules
rules.push(
{
test: /\.scss$/,
loader: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: 'css-loader!sass-loader',
}),
}
);
} else {
// Development entry points
entry.docs = path.join(docsPath, 'docs.js');
// Development plugins
plugins.push(
new webpack.HotModuleReplacementPlugin(),
new HtmlWebpackPlugin({
template: path.join(docsPath, 'index.html'),
path: outputDistPath,
filename: 'index.html',
})
);
// Development rules
rules.push(
{
test: /\.scss$/,
exclude: /node_modules/,
use: [
'style-loader',
'css-loader?sourceMap',
'sass-loader?sourceMap',
],
}
);
}
module.exports = {
devtool: isProduction ? false : 'source-map',
context: isProduction ? outputDistPath : sourcePath,
entry,
output: {
path: outputDistPath,
// publicPath: '/',
filename: '[name].js',
},
module: {
rules,
},
resolve: {
extensions: ['.webpack-loader.js', '.web-loader.js', '.loader.js', '.js', '.jsx'],
modules: [
path.resolve(__dirname, 'node_modules'),
sourcePath,
],
},
plugins,
devServer: {
contentBase: isProduction ? distPath : sourcePath,
historyApiFallback: true,
compress: isProduction,
inline: !isProduction,
hot: !isProduction,
host: '0.0.0.0',
disableHostCheck: true,
stats: {
assets: true,
children: false,
chunks: false,
hash: false,
modules: false,
publicPath: false,
timings: true,
version: false,
warnings: true,
colors: {
green: '\u001b[32m',
},
},
},
};