Skip to content

Commit ab17b17

Browse files
alan-agius4filipesilva
authored andcommitted
fix(@angular-devkit/build-angular): handle ng-packagr errors more gracefully.
Ng-packagr will throw an error when a compilation fails.
1 parent e5ba29c commit ab17b17

File tree

1 file changed

+3
-2
lines changed
  • packages/angular_devkit/build_angular/src/ng-packagr

1 file changed

+3
-2
lines changed

packages/angular_devkit/build_angular/src/ng-packagr/index.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
import { BuilderContext, BuilderOutput, createBuilder } from '@angular-devkit/architect';
1010
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';
1313
import { Schema as NgPackagrBuilderOptions } from './schema';
1414

1515
async function initialize(
@@ -37,6 +37,7 @@ export function execute(
3737
return from(initialize(options, context.workspaceRoot)).pipe(
3838
switchMap((packager) => (options.watch ? packager.watch() : packager.build())),
3939
mapTo({ success: true }),
40+
catchError((err) => of({ success: false, error: err.message })),
4041
);
4142
}
4243

0 commit comments

Comments
 (0)