File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ class TypescriptBuilder extends BuilderBase<TypescriptBuilderCompiler> {
3434 protected build ( production : boolean , builder : TypescriptBuilderCompiler , done : ( ) => void ) {
3535
3636 let tsFilter = filter ( [ "**/*" , "!**/*.d.ts" ] , { restore : true } ) ;
37- let tsSrc = gulp . src ( builder . Config . Src ) ;
37+ let tsSrc = builder . Project . src ( ) ;
3838 let tsResult = tsSrc . pipe ( tsFilter )
3939 . pipe ( tslint ( {
4040 formatter : TsLintFormatter
@@ -45,7 +45,7 @@ class TypescriptBuilder extends BuilderBase<TypescriptBuilderCompiler> {
4545 tsResult = tsResult . pipe ( sourcemaps . init ( ) ) ;
4646 }
4747
48- tsResult = builder . Project . src ( ) . pipe ( ( builder . Project as any ) ( this . reporter ) ) . js ;
48+ tsResult = tsResult . pipe ( ( builder . Project as any ) ( this . reporter ) ) . js ;
4949
5050 tsResult . pipe ( ( production ) ? uglify ( { mangle : true } ) : sourcemaps . write ( ) )
5151 . pipe ( gulp . dest ( builder . Config . OutDir ) )
You can’t perform that action at this time.
0 commit comments