Client: add webpack notifier
This commit is contained in:
parent
a64668c024
commit
66698b833f
|
@ -8,6 +8,7 @@ const helpers = require('./helpers')
|
||||||
var CopyWebpackPlugin = (CopyWebpackPlugin = require('copy-webpack-plugin'), CopyWebpackPlugin.default || CopyWebpackPlugin)
|
var CopyWebpackPlugin = (CopyWebpackPlugin = require('copy-webpack-plugin'), CopyWebpackPlugin.default || CopyWebpackPlugin)
|
||||||
const HtmlWebpackPlugin = require('html-webpack-plugin')
|
const HtmlWebpackPlugin = require('html-webpack-plugin')
|
||||||
const ForkCheckerPlugin = require('awesome-typescript-loader').ForkCheckerPlugin
|
const ForkCheckerPlugin = require('awesome-typescript-loader').ForkCheckerPlugin
|
||||||
|
const WebpackNotifierPlugin = require('webpack-notifier')
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Webpack Constants
|
* Webpack Constants
|
||||||
|
@ -244,8 +245,9 @@ module.exports = {
|
||||||
new HtmlWebpackPlugin({
|
new HtmlWebpackPlugin({
|
||||||
template: 'src/index.html',
|
template: 'src/index.html',
|
||||||
chunksSortMode: 'dependency'
|
chunksSortMode: 'dependency'
|
||||||
})
|
}),
|
||||||
|
|
||||||
|
new WebpackNotifierPlugin({ alwaysNotify: true })
|
||||||
],
|
],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -62,6 +62,7 @@
|
||||||
"webpack": "^1.13.1",
|
"webpack": "^1.13.1",
|
||||||
"webpack-md5-hash": "0.0.5",
|
"webpack-md5-hash": "0.0.5",
|
||||||
"webpack-merge": "^0.13.0",
|
"webpack-merge": "^0.13.0",
|
||||||
|
"webpack-notifier": "^1.3.0",
|
||||||
"webtorrent": "^0.93.2",
|
"webtorrent": "^0.93.2",
|
||||||
"zone.js": "0.6.12"
|
"zone.js": "0.6.12"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue