96252: Make existing lodash imports tree-shakeable

This commit is contained in:
Yury Bondarenko
2022-10-24 12:39:27 +02:00
parent be43fcb47f
commit 47ae04986d
52 changed files with 74 additions and 54 deletions

View File

@@ -2,7 +2,9 @@ import { Injectable } from '@angular/core';
import { Actions, createEffect, ofType } from '@ngrx/effects';
import { Store } from '@ngrx/store';
import { TranslateService } from '@ngx-translate/core';
import { findKey, isEqual, union } from 'lodash';
import findKey from 'lodash/findKey';
import isEqual from 'lodash/isEqual';
import union from 'lodash/union';
import { from as observableFrom, Observable, of as observableOf } from 'rxjs';
import { catchError, filter, map, mergeMap, switchMap, take, tap, withLatestFrom } from 'rxjs/operators';