In @reactivex/rxjs
package it is suggested that scoped package should be used:
npm install @reactivex/rxjs
And UMD module is available through npmcdn as
https://npmcdn.com/@reactivex/rxjs@5.0.0-beta.7/dist/global/Rx.umd.js
However, unscoped rxjs
package has got published 5.x versions too but README also suggests
npm install @reactivex/rxjs
And UMD module is available as
https://npmcdn.com/rxjs@5.0.0-beta.7/bundles/Rx.umd.js
Both refer to git+ssh://git@github.com/ReactiveX/RxJS.git
repository, but package contents look totally different.
Why do their trees differ so much? What is the practical difference between those two? Is there a reason why one of them should be favoured at this moment?