-
Notifications
You must be signed in to change notification settings - Fork 23
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
core: all - use RxJS latest and pipeable operators #258
Comments
This is critical for us to be able to tree shake our bundles correctly. While doing this we should:
|
Comment from @christophercr : |
One more reason to move forward with this: ReactiveX/rxjs#3212 |
Closed by #373 |
Goal: upgrade to the latest and greatest and try to take advantage of pipeable operators to improve our build size
Pipeable (also called "lettable") operators have been introduced in RxJS 5.5.0 and they provide a new way of composing observable chains.
Moreover, this new approach is more friendly with bundlers such as Webpack in order to automatically tree-shake the unused operators rather than being the developer manually taking care of not importing any operator that is not really needed.
We should move in this direction in order to get all the benefits of tree-shaking once we leverage it in Stark.
See https://blog.angularindepth.com/rxjs-understanding-lettable-operators-fe74dda186d3
Cfr
The text was updated successfully, but these errors were encountered: