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:

committed by
Jeremy Elbourn

parent
a16ac84840
commit
5514dc19d9
@ -5,7 +5,8 @@ import {ReadyStates} from '../enums';
|
||||
import {Connection, ConnectionBackend} from '../interfaces';
|
||||
import {isPresent} from 'angular2/src/facade/lang';
|
||||
import {BaseException, WrappedException} from 'angular2/src/facade/exceptions';
|
||||
import {Subject, ReplaySubject} from '@reactivex/rxjs/dist/cjs/Rx';
|
||||
import {Subject} from 'rxjs/Subject';
|
||||
import {ReplaySubject} from 'rxjs/subjects/ReplaySubject';
|
||||
|
||||
/**
|
||||
*
|
||||
|
Reference in New Issue
Block a user