refactor(facade): use rxjs package

move to new RxJS distribution.

BREAKING CHANGE:

RxJS imports now are via `rxjs` instead of `@reactivex/rxjs`
Individual operators can be imported `import 'rxjs/operators/map'`
This commit is contained in:
Rob Wormald
2015-11-30 17:22:52 -08:00
committed by Jeremy Elbourn
parent a16ac84840
commit 5514dc19d9
16 changed files with 42 additions and 69 deletions

View File

@ -29,7 +29,8 @@ import {
Http,
Jsonp
} from 'angular2/http';
import {Observable, Subject} from '@reactivex/rxjs/dist/cjs/Rx';
import {Observable} from 'rxjs/Observable';
import {Subject} from 'rxjs/Subject';
class SpyObserver extends SpyObject {
onNext: Function;