From 66698b833f77806045b36fdeba612acda43dd7f7 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 20 Jul 2016 11:43:31 +0200 Subject: [PATCH] Client: add webpack notifier --- client/config/webpack.common.js | 4 +++- client/package.json | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/client/config/webpack.common.js b/client/config/webpack.common.js index dec468736..2ff3a1506 100644 --- a/client/config/webpack.common.js +++ b/client/config/webpack.common.js @@ -8,6 +8,7 @@ const helpers = require('./helpers') var CopyWebpackPlugin = (CopyWebpackPlugin = require('copy-webpack-plugin'), CopyWebpackPlugin.default || CopyWebpackPlugin) const HtmlWebpackPlugin = require('html-webpack-plugin') const ForkCheckerPlugin = require('awesome-typescript-loader').ForkCheckerPlugin +const WebpackNotifierPlugin = require('webpack-notifier') /* * Webpack Constants @@ -244,8 +245,9 @@ module.exports = { new HtmlWebpackPlugin({ template: 'src/index.html', chunksSortMode: 'dependency' - }) + }), + new WebpackNotifierPlugin({ alwaysNotify: true }) ], /* diff --git a/client/package.json b/client/package.json index 2dfc0c659..b01e768b3 100644 --- a/client/package.json +++ b/client/package.json @@ -62,6 +62,7 @@ "webpack": "^1.13.1", "webpack-md5-hash": "0.0.5", "webpack-merge": "^0.13.0", + "webpack-notifier": "^1.3.0", "webtorrent": "^0.93.2", "zone.js": "0.6.12" }, -- 2.41.0