File tree 2 files changed +3
-5
lines changed 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 71
71
"gulp-sourcemaps" : " 2.0.0-alpha" ,
72
72
"gulp-template" : " ^4.0.0" ,
73
73
"gulp-tslint" : " ^4.3.3" ,
74
- "gulp-typescript" : " ~2.13.4 " ,
74
+ "gulp-typescript" : " ~2.13.6 " ,
75
75
"gulp-uglify" : " ^1.5.3" ,
76
76
"gulp-util" : " ^3.0.7" ,
77
77
"gulp-watch" : " ^4.3.5" ,
Original file line number Diff line number Diff line change @@ -35,11 +35,10 @@ export = () => {
35
35
if ( typedBuildCounter < TYPED_COMPILE_INTERVAL ) {
36
36
isFullCompile = false ;
37
37
tsProject = makeTsProject ( { isolatedModules : true } ) ;
38
+ projectFiles = projectFiles . pipe ( plugins . cached ( ) ) ;
39
+ util . log ( 'Performing typeless TypeScript compile.' ) ;
38
40
} else {
39
41
tsProject = makeTsProject ( ) ;
40
- if ( TYPED_COMPILE_INTERVAL <= 0 ) {
41
- projectFiles = projectFiles . pipe ( plugins . cached ( ) ) ;
42
- }
43
42
projectFiles = merge ( typings , projectFiles ) ;
44
43
}
45
44
@@ -55,7 +54,6 @@ export = () => {
55
54
typedBuildCounter = 0 ;
56
55
} else {
57
56
typedBuildCounter ++ ;
58
- util . log ( 'Performing typeless TypeScript compile.' ) ;
59
57
}
60
58
61
59
return result . js
You can’t perform that action at this time.
0 commit comments