We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ac0648f + 3707203 commit f9c75e7Copy full SHA for f9c75e7
templates/app/gulpfile.babel.js
@@ -236,6 +236,9 @@ gulp.task('webpack:dist', function() {
236
const webpackDistConfig = makeWebpackConfig({ BUILD: true });
237
return gulp.src(webpackDistConfig.entry.app)
238
.pipe(webpack(webpackDistConfig))
239
+ .on('error', (err) => {
240
+ this.emit('end'); // Recover from errors
241
+ })
242
.pipe(gulp.dest(`${paths.dist}/client`));
243
});
244
@@ -491,8 +494,8 @@ gulp.task('build', cb => {
491
494
'inject',
492
495
'transpile:server',
493
496
[
- 'build:images',
- 'typings'
497
+ 'build:images'<% if(filters.ts) { %>,
498
+ 'typings'<% } %>
499
],
500
501
'copy:extras',
0 commit comments