File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
packages/angular_devkit/build_ng_packagr/src/build Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change 88import { BuilderContext , BuilderOutput , createBuilder } from '@angular-devkit/architect' ;
99import { resolve } from 'path' ;
1010import { Observable , from } from 'rxjs' ;
11- import { catchError , mapTo , switchMap } from 'rxjs/operators' ;
11+ import { mapTo , switchMap } from 'rxjs/operators' ;
1212import { Schema as NgPackagrBuilderOptions } from './schema' ;
1313
1414async function initialize (
@@ -33,11 +33,6 @@ export function execute(
3333 return from ( initialize ( options , context . workspaceRoot ) ) . pipe (
3434 switchMap ( packager => options . watch ? packager . watch ( ) : packager . build ( ) ) ,
3535 mapTo ( { success : true } ) ,
36- catchError ( error => {
37- context . reportStatus ( 'Error: ' + error ) ;
38-
39- return [ { success : false } ] ;
40- } ) ,
4136 ) ;
4237}
4338
You can’t perform that action at this time.
0 commit comments