summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-05-24 14:56:26 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-05-24 14:56:26 +0900
commitceebb84272db3aefc3c11b0182a24b2e3fb127ae (patch)
tree2557f3111b3d4293251cef2018519a30bdbd3604
parent:v: (diff)
downloadsharkey-ceebb84272db3aefc3c11b0182a24b2e3fb127ae.tar.gz
sharkey-ceebb84272db3aefc3c11b0182a24b2e3fb127ae.tar.bz2
sharkey-ceebb84272db3aefc3c11b0182a24b2e3fb127ae.zip
いい感じに
-rw-r--r--gulpfile.ts12
1 files changed, 8 insertions, 4 deletions
diff --git a/gulpfile.ts b/gulpfile.ts
index 278b20bb12..3399a881b2 100644
--- a/gulpfile.ts
+++ b/gulpfile.ts
@@ -107,12 +107,16 @@ gulp.task('build:client', [
]);
gulp.task('webpack', done => {
- const output = childProcess.execSync(
- Path.join('.', 'node_modules', '.bin', 'webpack') + ' --config ./webpack/webpack.config.ts');
+ const webpack = childProcess.spawn(
+ Path.join('.', 'node_modules', '.bin', 'webpack'),
+ ['--config', './webpack/webpack.config.ts'], {
+ shell: true
+ });
- console.log(output.toString());
+ webpack.stdout.pipe(process.stdout);
+ webpack.stderr.pipe(process.stderr);
- done();
+ webpack.on('exit', done);
});
gulp.task('build:client:script', () =>