summaryrefslogtreecommitdiff
path: root/gulpfile.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-05-25 06:38:53 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-05-25 06:38:53 +0900
commitacf7cc90c84111ba96aab1f2e956a0cc892fa4ae (patch)
treed6d1d383661e07ffc1720ecd997e35d75e7782d7 /gulpfile.ts
parent[Client] Fix style (diff)
downloadsharkey-acf7cc90c84111ba96aab1f2e956a0cc892fa4ae.tar.gz
sharkey-acf7cc90c84111ba96aab1f2e956a0cc892fa4ae.tar.bz2
sharkey-acf7cc90c84111ba96aab1f2e956a0cc892fa4ae.zip
コンソールへのwebpack出力をいい感じに
Diffstat (limited to 'gulpfile.ts')
-rw-r--r--gulpfile.ts6
1 files changed, 2 insertions, 4 deletions
diff --git a/gulpfile.ts b/gulpfile.ts
index e07ca4b914..f9bd85b438 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);
});