This repository has been archived by the owner on Dec 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 682
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary:This change upgrades us to the RxJS 5 beta. It includes: * Update Flow definitions to reflect new APIs * Add `DisposableSubscription` and `CompositeSubscription` for dealing with new Subscription API (See also ReactiveX/rxjs#1583) * Add `bufferUntil` to replace some `buffer()` usages (See ReactiveX/rxjs#1610) * Remove rx-dom * Update package.json * Update all code to use new APIs Reviewed By: peterhal Differential Revision: D3131543 fb-gh-sync-id: 437c7b90d6e1fd8e463a57eb341146bbc4e9bbd3 fbshipit-source-id: 437c7b90d6e1fd8e463a57eb341146bbc4e9bbd3
- Loading branch information
1 parent
c2464c8
commit 70ffe3a
Showing
122 changed files
with
705 additions
and
583 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,11 @@ | |
"name": "nuclide", | ||
"version": "0.130.0", | ||
"dependencies": { | ||
"@reactivex/rxjs": { | ||
"version": "5.0.0-beta.6", | ||
"from": "@reactivex/[email protected]", | ||
"resolved": "https://registry.npmjs.org/@reactivex/rxjs/-/rxjs-5.0.0-beta.6.tgz" | ||
}, | ||
"acorn": { | ||
"version": "1.2.2", | ||
"from": "acorn@>=1.0.3 <2.0.0", | ||
|
@@ -1261,16 +1266,6 @@ | |
"from": "[email protected]", | ||
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.2.tgz" | ||
}, | ||
"rx": { | ||
"version": "3.1.1", | ||
"from": "[email protected]", | ||
"resolved": "https://registry.npmjs.org/rx/-/rx-3.1.1.tgz" | ||
}, | ||
"rx-dom": { | ||
"version": "7.0.3", | ||
"from": "[email protected]", | ||
"resolved": "https://registry.npmjs.org/rx-dom/-/rx-dom-7.0.3.tgz" | ||
}, | ||
"sax": { | ||
"version": "1.2.1", | ||
"from": "sax@>=0.6.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.