いい感じに

This commit is contained in:
syuilo 2017-05-24 14:56:26 +09:00
parent dead83d75e
commit ceebb84272

View file

@ -107,12 +107,16 @@ gulp.task('build:client', [
]); ]);
gulp.task('webpack', done => { gulp.task('webpack', done => {
const output = childProcess.execSync( const webpack = childProcess.spawn(
Path.join('.', 'node_modules', '.bin', 'webpack') + ' --config ./webpack/webpack.config.ts'); 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', () => gulp.task('build:client:script', () =>