Skip to content

Commit 022119a

Browse files
committed
fix(gulp:build): remove typings task from non-ts
The typings task was erroneously included in the gulp build even in non-typescript scaffolds. fixes #2110
1 parent ac0648f commit 022119a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: templates/app/gulpfile.babel.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -491,8 +491,8 @@ gulp.task('build', cb => {
491491
'inject',
492492
'transpile:server',
493493
[
494-
'build:images',
495-
'typings'
494+
'build:images'<% if(filters.ts) { %>,
495+
'typings'<% } %>
496496
],
497497
[
498498
'copy:extras',

0 commit comments

Comments
 (0)