Unable to use @ngneat/elf with RxJS 6.x #348
ThomasBurleson
started this conversation in
Show and tell
Replies: 2 comments
-
Any reason you're not upgrading to v7? It should be seamless. |
Beta Was this translation helpful? Give feedback.
0 replies
-
In my case I'm using rxjs v6 because I'm trying to use Angular 11. At some point we'll upgrade our apps to a newer version of Angular. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Which @ngneat/elf-* package(s) are the source of the bug?
Is this a regression?
Yes
Description
RxJS 7.x exports operators as part of rxjs; developers use
import {...} from 'rxjs'
RxJS 6.x exports operators only via
rxjs/operators
Unfortunately, some of the code within
@ngneat/elf
uses formats that ONLY supports RxJS 7.x:entity-state-history.ts
usesimport { Subscription, pairwise, filter, map, startWith } from 'rxjs';
request-cache.ts
usesimport { distinctUntilKeyChanged, Observable, pipe } from 'rxjs';
Please provide the environment you discovered this bug in
Beta Was this translation helpful? Give feedback.
All reactions