forked from 1337programming/webpack-shell-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
39 lines (36 loc) · 864 Bytes
/
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
const path = require('path');
const webpack = require('webpack');
const WebpackSynchronizableShellPlugin = 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 WebpackSynchronizableShellPlugin({
onBuildStart: {
scripts: [],
blocking: true,
parallel: true
},
onBuildEnd: {
},
onBuildExit: {
scripts: ['node test.js', 'echo "second"', 'echo "third"'],
parallel: true
},
dev: true, safe: true, verbose: true
}),
new webpack.HotModuleReplacementPlugin()
]
};