-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
issues when using rxjs/fetch in create-react-app or webpack #4999
Labels
bug
Confirmed bug
Comments
it seems like using import { finalize, mergeMap, share } from "rxjs/operators"; but |
@benlesh It seems likely that the problem is related to Lines 135 to 140 in 3881723
|
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Bug Report
Current Behavior
the default behaviour of using
it will be using the source file in
./node_modules/rxjs/_esm5/index.js
because of themodule
defined in./node_modules/rxjs/package.json
but if we are using some other stuffs like
it will be using the source file in
./node_modules/rxjs/fetch/index.js
this is causing a lot of bugs which I filed it here #4820
I have to use
then everything works fine
Reproduction
https://github.com/kambing86/test-from-fetch
fix repo https://github.com/kambing86/test-from-fetch/tree/fix/import-fromFetch
Expected behavior
should be using just one type of source?
Environment
The text was updated successfully, but these errors were encountered: