diff --git a/gulpfile.ts b/gulpfile.ts index e07ca4b91..f9bd85b43 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -110,12 +110,10 @@ gulp.task('webpack', done => { const webpack = childProcess.spawn( Path.join('.', 'node_modules', '.bin', 'webpack'), ['--config', './webpack/webpack.config.ts'], { - shell: true + shell: true, + stdio: 'inherit' }); - webpack.stdout.pipe(process.stdout); - webpack.stderr.pipe(process.stderr); - webpack.on('exit', done); });