diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-02-25 14:32:37 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-02-25 14:32:37 +0900 |
| commit | 841606536bd5f0c5dee534bf7147180aa97c92dd (patch) | |
| tree | f7dd68edd647ffbce23bb2111dcaf947835f2569 /webpack | |
| parent | Merge pull request #1142 from syuilo/greenkeeper/webpack-4.0.0 (diff) | |
| download | sharkey-841606536bd5f0c5dee534bf7147180aa97c92dd.tar.gz sharkey-841606536bd5f0c5dee534bf7147180aa97c92dd.tar.bz2 sharkey-841606536bd5f0c5dee534bf7147180aa97c92dd.zip | |
Show progress bar
Diffstat (limited to 'webpack')
| -rw-r--r-- | webpack/plugins/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
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': { |