forked from 1337programming/webpack-shell-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
32 lines (30 loc) · 711 Bytes
/
webpack.config.js
File metadata and controls
32 lines (30 loc) · 711 Bytes
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
const path = require('path');
const webpack = require('webpack');
const WebpackShellPlugin = require('./lib');
module.exports = {
watch: true,
entry: path.resolve(__dirname, 'test/entry.js'),
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js'
},
/*devServer: {
contentBase: path.resolve(__dirname, 'test')
},*/
module: {
loaders: [{
test: /\.css$/,
loader: 'style!css'
}]
},
plugins: [
new WebpackShellPlugin({
onBuildStart: ['node test.js'],
onBuildEnd: ['echo "Webpack End"'],
onBuildError: ['echo "Webpack ERROR"'],
safe: true,
verbose: true
}),
new webpack.HotModuleReplacementPlugin()
]
};