-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.common.config.js
219 lines (212 loc) · 5.49 KB
/
webpack.common.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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
const path = require('path');
const fs = require('fs');
const webpack = require('webpack');
const CompressionPlugin = require('compression-webpack-plugin');
const cssnext = require('postcss-cssnext');
const nodeExternals = require('webpack-node-externals');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const lessToJs = require('less-vars-to-js');
const themeVariables = lessToJs(fs.readFileSync(path.join(__dirname, './src/styles/ant-default-vars.less'), 'utf8'));
process.noDeprecation = true
function ifProd(env, plugin) {
if (env === 'prod') return plugin
return undefined
}
function ifDev(env, plugin) {
if (env === 'dev') return plugin
return undefined
}
function noUndefined(array) {
return array.filter(function(item) {
return !!item
})
}
function client(env) {
return {
name: 'client',
devtool: env === 'prod' ? 'source-map' : 'eval',
entry: {
bundle: noUndefined([
'babel-polyfill',
'whatwg-fetch',
ifDev(env, 'webpack-hot-middleware/client'),
'./src/client'
])
},
output: {
path: path.join(__dirname, 'dist'),
filename: '[name].js',
publicPath: '/static/'
},
plugins: noUndefined([
new CompressionPlugin(),
new ExtractTextPlugin('style.css'),
new webpack.DefinePlugin({
"process.env": {
'client': JSON.stringify(true),
'NODE_ENV': JSON.stringify(process.env.NODE_ENV),
}
}),
new webpack.LoaderOptionsPlugin({
test: /\.css$/,
options: {
postcss: cssnext,
// required to avoid issue css-loader?modules
// this is normally the default value, but when we use
// LoaderOptionsPlugin, we must specify it again, otherwise,
// context is missing (and css modules names can be broken)!
context: __dirname,
},
}),
ifDev(env, new webpack.HotModuleReplacementPlugin()),
ifProd(env, new webpack.NoEmitOnErrorsPlugin()),
ifProd(env, new webpack.ExtendedAPIPlugin()),
ifProd(env, new webpack.LoaderOptionsPlugin({
minimize: true
})),
ifProd(env, new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
compress: {
warnings: false
}
})),
]),
resolve: {
modules: [
path.join(__dirname, 'src'),
'node_modules'
],
extensions: ['.js']
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
include: __dirname,
query: {
plugins: [
['import', { libraryName: 'antd', style: true }]
],
}
},
{
test: /\.less$/,
include: [/node_modules\/.*antd/],
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ['css-loader', 'less-loader?{"modifyVars":'+JSON.stringify(themeVariables)+'}'],
})
},
{
test: /\.(scss|css$)$/,
exclude: /node_modules/,
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: [
{
loader: 'css-loader',
options: {
modules: true,
importLoaders: 1,
localIdentName: '[name]__[local]___[hash:base64:5]'
}
},
{
loader: 'sass-loader',
}
]
})
},
{
test: /\.(png|jpg|svg|ico)$/,
loader: 'file-loader',
options: {
name: 'images/[name].[ext]'
}
},
{
test: /\.(ttf|woff|eot|ttf|otf|woff2)$/,
loader: 'file-loader',
options: {
name: 'fonts/[name].[ext]'
}
},
]
}
}
}
function server(env) {
return {
name: 'server',
devtool: 'eval',
entry: ['babel-polyfill', './src/server.js'],
output: {
path: path.join(__dirname, 'dist'),
filename: 'SSR.js',
libraryTarget: 'commonjs2',
publicPath: '/static/'
},
target: 'node',
externals: nodeExternals(),
plugins: noUndefined([
new webpack.DefinePlugin({
"process.env": {
'NODE_ENV': JSON.stringify(process.env.NODE_ENV),
}
}),
]),
resolve: {
modules: [
path.join(__dirname, 'src'),
'node_modules'
],
extensions: ['.js']
},
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
include: __dirname,
},
{
test: /\.(scss|css$)$/,
exclude: /node_modules/,
use: [
{
loader: 'css-loader/locals',
options: {
modules: true,
importLoaders: 1,
localIdentName: '[name]__[local]___[hash:base64:5]'
}
},
{
loader: 'sass-loader',
}
]
},
{
test: /\.(png|jpg|svg|ico)$/,
loader: 'file-loader',
options: {
name: 'images/[name].[ext]'
}
},
{
test: /\.(ttf|woff|eot|ttf|otf|woff2)$/,
loader: 'file-loader',
options: {
name: 'fonts/[name].[ext]'
}
},
]
}
}
}
module.exports = function(env) {
return [server(env), client(env)]
}