Skip to content

Commit

Permalink
fix(angular): import rxjs operators from 'rxjs/operators' for backwar…
Browse files Browse the repository at this point in the history
…ds compatibility
  • Loading branch information
leosvelperez committed Jan 30, 2024
1 parent df252a6 commit 9648078
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ import {
getRemotes,
} from '@nx/webpack/src/utils/module-federation';
import { fork } from 'child_process';
import { combineLatest, concatMap, from, switchMap } from 'rxjs';
import { combineLatest, from } from 'rxjs';
import { concatMap, switchMap } from 'rxjs/operators';

export function executeModuleFederationDevServerBuilder(
schema: Schema,
Expand Down

0 comments on commit 9648078

Please sign in to comment.