From 841606536bd5f0c5dee534bf7147180aa97c92dd Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 25 Feb 2018 14:32:37 +0900 Subject: Show progress bar --- webpack/plugins/index.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'webpack') diff --git a/webpack/plugins/index.ts b/webpack/plugins/index.ts index 1ae63cb430..b2ecb5c608 100644 --- a/webpack/plugins/index.ts +++ b/webpack/plugins/index.ts @@ -1,4 +1,5 @@ import * as webpack from 'webpack'; +const ProgressBarPlugin = require('progress-bar-webpack-plugin'); import consts from './consts'; import hoist from './hoist'; @@ -9,6 +10,7 @@ const isProduction = env === 'production'; export default (version, lang) => { const plugins = [ + new ProgressBarPlugin(), consts(lang), new webpack.DefinePlugin({ 'process.env': { -- cgit v1.2.3-freya