File tree 1 file changed +3
-2
lines changed
packages/angular_devkit/build_angular/src/ng-packagr
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 8
8
9
9
import { BuilderContext , BuilderOutput , createBuilder } from '@angular-devkit/architect' ;
10
10
import { resolve } from 'path' ;
11
- import { Observable , from } from 'rxjs' ;
12
- import { mapTo , switchMap } from 'rxjs/operators' ;
11
+ import { Observable , from , of } from 'rxjs' ;
12
+ import { catchError , mapTo , switchMap } from 'rxjs/operators' ;
13
13
import { Schema as NgPackagrBuilderOptions } from './schema' ;
14
14
15
15
async function initialize (
@@ -37,6 +37,7 @@ export function execute(
37
37
return from ( initialize ( options , context . workspaceRoot ) ) . pipe (
38
38
switchMap ( ( packager ) => ( options . watch ? packager . watch ( ) : packager . build ( ) ) ) ,
39
39
mapTo ( { success : true } ) ,
40
+ catchError ( ( err ) => of ( { success : false , error : err . message } ) ) ,
40
41
) ;
41
42
}
42
43
You can’t perform that action at this time.
0 commit comments