File tree 1 file changed +2
-2
lines changed
packages/angular_devkit/build_angular/src/utils
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 5
5
* Use of this source code is governed by an MIT-style license that can be
6
6
* found in the LICENSE file at https://angular.io/license
7
7
*/
8
- import { BuildEvent } from '@angular-devkit/architect' ;
8
+ import { BuilderOutput } from '@angular-devkit/architect' ;
9
9
import { ForkOptions , fork } from 'child_process' ;
10
10
import { resolve } from 'path' ;
11
11
import { Observable } from 'rxjs' ;
@@ -18,7 +18,7 @@ export function runModuleAsObservableFork(
18
18
exportName : string | undefined ,
19
19
// tslint:disable-next-line:no-any
20
20
args : any [ ] ,
21
- ) : Observable < BuildEvent > {
21
+ ) : Observable < BuilderOutput > {
22
22
return new Observable ( obs => {
23
23
const workerPath : string = resolve ( __dirname , './run-module-worker.js' ) ;
24
24
You can’t perform that action at this time.
0 commit comments