'running webpack' message should indicate config name

This commit is contained in:
Michael Bradley, Jr 2018-08-16 17:01:21 -05:00
parent df84fce953
commit 1f56f717b8
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ class Pipeline {
});
},
function runWebpack(next) {
self.logger.info(__('running webpack...'));
self.logger.info(__(`running webpack with '${self.webpackConfigName}' config...`));
let built = false;
const webpackProcess = new ProcessLauncher({
modulePath: utils.joinPath(__dirname, 'webpackProcess.js'),