We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6d145b commit 01b53a9Copy full SHA for 01b53a9
1 file changed
packages/angular_devkit/build_angular/src/utils/run-module-as-observable-fork.ts
@@ -5,7 +5,7 @@
5
* Use of this source code is governed by an MIT-style license that can be
6
* found in the LICENSE file at https://angular.io/license
7
*/
8
-import { BuildEvent } from '@angular-devkit/architect';
+import { BuilderOutput } from '@angular-devkit/architect';
9
import { ForkOptions, fork } from 'child_process';
10
import { resolve } from 'path';
11
import { Observable } from 'rxjs';
@@ -18,7 +18,7 @@ export function runModuleAsObservableFork(
18
exportName: string | undefined,
19
// tslint:disable-next-line:no-any
20
args: any[],
21
-): Observable<BuildEvent> {
+): Observable<BuilderOutput> {
22
return new Observable(obs => {
23
const workerPath: string = resolve(__dirname, './run-module-worker.js');
24
0 commit comments