chore(package): update RxJS version

This commit is contained in:
Rob Wormald 2015-10-27 19:17:58 -07:00
parent ca3986f31d
commit 0378e55fab
5 changed files with 7 additions and 7 deletions

View File

@ -4,6 +4,7 @@ import {global, isPresent} from 'angular2/src/core/facade/lang';
import {PromiseWrapper, Promise, PromiseCompleter} from 'angular2/src/core/facade/promise';
export {PromiseWrapper, Promise, PromiseCompleter} from 'angular2/src/core/facade/promise';
import {Subject, Subscription, Observable as RxObservable} from '@reactivex/rxjs/dist/cjs/Rx';
export {Subject} from '@reactivex/rxjs/dist/cjs/Rx';
import Operator from '@reactivex/rxjs/dist/cjs/Operator';
export namespace NodeJS {
@ -125,5 +126,3 @@ export class Observable<T> extends RxObservable<T> {
return observable;
}
}
export {Subject}

View File

@ -699,6 +699,7 @@ var NG_API = [
'Subject.sampleTime():js',
'Subject.scan():js',
'Subject.share():js',
'Subject.shareBehavior():js',
'Subject.shareReplay():js',
'Subject.single():js',
'Subject.skip():js',

View File

@ -1,7 +1,7 @@
{
"dependencies": {
"@reactivex/rxjs": {
"version": "5.0.0-alpha.6"
"version": "5.0.0-alpha.7"
},
"angular": {
"version": "1.4.7"

6
npm-shrinkwrap.json generated
View File

@ -3,9 +3,9 @@
"version": "2.0.0-alpha.44",
"dependencies": {
"@reactivex/rxjs": {
"version": "5.0.0-alpha.6",
"from": "@reactivex/rxjs@5.0.0-alpha.6",
"resolved": "http://registry.npmjs.org/@reactivex/rxjs/-/rxjs-5.0.0-alpha.6.tgz"
"version": "5.0.0-alpha.7",
"from": "http://registry.npmjs.org/@reactivex/rxjs/-/rxjs-5.0.0-alpha.7.tgz",
"resolved": "http://registry.npmjs.org/@reactivex/rxjs/-/rxjs-5.0.0-alpha.7.tgz"
},
"angular": {
"version": "1.4.7",

View File

@ -28,7 +28,7 @@
"test": "gulp test.all.js && gulp test.all.dart"
},
"dependencies": {
"@reactivex/rxjs": "5.0.0-alpha.6",
"@reactivex/rxjs": "5.0.0-alpha.7",
"reflect-metadata": "0.1.2",
"zone.js": "0.5.8"
},