Skip to content

Commit 01b53a9

Browse files
clydinmgechev
authored andcommitted
fix(@angular-devkit/build-angular): update utility function output type
1 parent c6d145b commit 01b53a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎packages/angular_devkit/build_angular/src/utils/run-module-as-observable-fork.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Use of this source code is governed by an MIT-style license that can be
66
* found in the LICENSE file at https://angular.io/license
77
*/
8-
import { BuildEvent } from '@angular-devkit/architect';
8+
import { BuilderOutput } from '@angular-devkit/architect';
99
import { ForkOptions, fork } from 'child_process';
1010
import { resolve } from 'path';
1111
import { Observable } from 'rxjs';
@@ -18,7 +18,7 @@ export function runModuleAsObservableFork(
1818
exportName: string | undefined,
1919
// tslint:disable-next-line:no-any
2020
args: any[],
21-
): Observable<BuildEvent> {
21+
): Observable<BuilderOutput> {
2222
return new Observable(obs => {
2323
const workerPath: string = resolve(__dirname, './run-module-worker.js');
2424

0 commit comments

Comments
 (0)