-
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
refactor(build): No longer building AMD, umd bundle is Rx.js #1871
Conversation
attn: @kwonoj @jayphelps Please review thoroughly. Since this change isn't one where it's easy to detect breakage via automation. |
|
||
|
||
5.0.0-beta.11 or higher: | ||
|
||
https://npmcdn.com/@reactivex/rxjs/dist/global/Rx.umd.js |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
b.11 or higher may need to point Rx.js
instead of Rx.umd.js
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, I believe this should be changed to 5.0.0-beta.12 or higher
need to point to Rx.js
cause the previous section includes beta.11 (the current release) and correctly points to Rx.umd.js
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, that seems more correct. Maybe just align with installation.md
, saying After beta.11
?
Can we change the |
Otherwise looks good. |
BREAKING CHANGE: Individual AMD modules are no longer being built. AMD users my use the single UMD bundle output. BREAKING CHANGE: UMD bundled output is no longer named like `Rx.umd.js`, the `.umd` part has been removed, and it's just `Rx.js` Closes #1678
@jayphelps updates made. |
change looks good to me. |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
This is still using browserify for bundling. This is just the minimal change to close #1678.
If TSC is now providing a built-in way of bundling and UMD output, we should be using that, but for now, browserify is fine.
BREAKING CHANGE: AMD modules are no longer built and supported
BREAKING CHANGE:
Rx.umd.js
and the like are now justRx.js
Closes #1678