Skip to content

Commit bb045c5

Browse files
committed
fix(gulp): add inject:tsconfig to inject task
remove now extraneous inject:tsconfig from serve (it already includes inject) [skip ci]
1 parent 5228536 commit bb045c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/templates/gulpfile.babel(gulp).js

+2-2
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ gulp.task('env:prod', () => {
204204
********************/
205205

206206
gulp.task('inject', cb => {
207-
runSequence(['inject:js', 'inject:css', 'inject:<%= styleExt %>'], cb);
207+
runSequence(['inject:js', 'inject:css', 'inject:<%= styleExt %>'<% if(filters.ts) { %>, 'inject:tsconfig'<% } %>], cb);
208208
});
209209

210210
gulp.task('inject:js', () => {
@@ -420,7 +420,7 @@ gulp.task('watch', () => {
420420

421421
gulp.task('serve', cb => {
422422
runSequence(['clean:tmp', 'constant'<% if(filters.ts) { %>, 'tsd'<% } %>],
423-
['lint:scripts', 'inject'<% if(filters.jade) { %>, 'jade'<% } %><% if(filters.ts) { %>, 'inject:tsconfig'<% } %>],
423+
['lint:scripts', 'inject'<% if(filters.jade) { %>, 'jade'<% } %>],
424424
['wiredep:client'],
425425
['transpile:client', 'styles'],
426426
['start:server', 'start:client'],

0 commit comments

Comments
 (0)