-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwatch.js
37 lines (32 loc) · 920 Bytes
/
watch.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
// External dependencies
var webpack = require('webpack'),
webpackDevMiddleware = require('webpack-dev-middleware'),
webpackHotMiddleware = require('webpack-hot-middleware'),
browserSync = require('browser-sync');
// Internal dependencies
var webpackConfig = require('./webpack.config'),
config = require('./src/config');
// Internal variables
var host = 'http://localhost',
port = config.devPort || '3000',
compiler;
webpackConfig.output.publicPath = host + ':' + port + config.output.publicPath;
compiler = webpack(webpackConfig);
browserSync.init({
server: {
baseDir: '.',
middleware: [
webpackDevMiddleware(compiler, {
publicPath: webpackConfig.output.publicPath,
noInfo: false,
quite: false,
stats: {
colors: true
}
}),
webpackHotMiddleware(compiler, {
log: browserSync.notify
})
]
}
});