Skip to content

Commit

Permalink
fix(@angular-devkit/build-angular): update utility function output type
Browse files Browse the repository at this point in the history
  • Loading branch information
clydin authored and mgechev committed Apr 2, 2019
1 parent c6d145b commit 01b53a9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { BuildEvent } from '@angular-devkit/architect';
import { BuilderOutput } from '@angular-devkit/architect';
import { ForkOptions, fork } from 'child_process';
import { resolve } from 'path';
import { Observable } from 'rxjs';
Expand All @@ -18,7 +18,7 @@ export function runModuleAsObservableFork(
exportName: string | undefined,
// tslint:disable-next-line:no-any
args: any[],
): Observable<BuildEvent> {
): Observable<BuilderOutput> {
return new Observable(obs => {
const workerPath: string = resolve(__dirname, './run-module-worker.js');

Expand Down

0 comments on commit 01b53a9

Please sign in to comment.