いい感じに

This commit is contained in:
syuilo 2017-05-24 14:56:26 +09:00
parent dead83d75e
commit ceebb84272
1 changed files with 8 additions and 4 deletions

View File

@ -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', () =>