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
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
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/operatorsUnfortunately, some of the code within
@ngneat/elfuses formats that ONLY supports RxJS 7.x:entity-state-history.tsusesimport { Subscription, pairwise, filter, map, startWith } from 'rxjs';request-cache.tsusesimport { distinctUntilKeyChanged, Observable, pipe } from 'rxjs';Please provide the environment you discovered this bug in
Beta Was this translation helpful? Give feedback.
All reactions