From acf7cc90c84111ba96aab1f2e956a0cc892fa4ae Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 25 May 2017 06:38:53 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=B3=E3=83=B3=E3=82=BD=E3=83=BC=E3=83=AB?= =?UTF-8?q?=E3=81=B8=E3=81=AEwebpack=E5=87=BA=E5=8A=9B=E3=82=92=E3=81=84?= =?UTF-8?q?=E3=81=84=E6=84=9F=E3=81=98=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gulpfile.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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); });