forked from frontend/toolbox-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.dev.config.js
55 lines (53 loc) · 1.25 KB
/
webpack.dev.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
/* globals require, module, __dirname */
const webpack = require('webpack');
const path = require('path');
const config = require('./tasks/config');
module.exports = {
entry: {
app: [
'webpack/hot/dev-server',
'webpack-hot-middleware/client',
`${config.project}/${config.src}components/base.js`
]
},
output: {
path: `${config.project}/${config.dest}js`,
filename: '[name].bundle.js'
},
module: {
loaders: [
{
test: /\.(js|jsx)$/,
exclude: /(node_modules|bower_components)/,
loaders: 'babel-loader',
query: {
presets: ['babel-preset-es2015'],
plugins: [
'babel-plugin-transform-es2015-spread',
'babel-plugin-transform-object-rest-spread'
]
}
},
{
test: /\.json$/,
loader: 'json'
}
]
},
resolve: {
extensions: ['.js', '.jsx'],
modules: [
path.resolve(`${config.project}/${config.src}components`),
path.resolve(__dirname, 'node_modules'),
'node_modules'
]
},
plugins: [
new webpack.optimize.CommonsChunkPlugin({
name: 'vendors',
minChunks: 2,
filename: 'vendors.bundle.js'
}),
new webpack.HotModuleReplacementPlugin()
]
};