feature(core): update RxJS to 5.0.0-beta.11 (#10648)
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
"author": "angular",
|
||||
"license": "MIT",
|
||||
"peerDependencies": {
|
||||
"rxjs": "5.0.0-beta.6",
|
||||
"rxjs": "5.0.0-beta.11",
|
||||
"zone.js": "^0.6.6"
|
||||
},
|
||||
"repository": {
|
||||
|
16
modules/@angular/core/testing/index.ts
Normal file
16
modules/@angular/core/testing/index.ts
Normal file
@ -0,0 +1,16 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright Google Inc. All Rights Reserved.
|
||||
*
|
||||
* Use of this source code is governed by an MIT-style license that can be
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
|
||||
export * from './async';
|
||||
export * from './component_fixture';
|
||||
export * from './fake_async';
|
||||
export * from './test_bed';
|
||||
export * from './testing';
|
||||
export * from './metadata_override';
|
||||
|
||||
export * from '../private_export_testing';
|
@ -9,7 +9,8 @@
|
||||
import {Component, NgModule} from '@angular/core';
|
||||
import {BrowserModule} from '@angular/platform-browser';
|
||||
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
|
||||
import {Observable, Subscriber} from 'rxjs/Rx';
|
||||
import {Observable} from 'rxjs/Observable';
|
||||
import {Subscriber} from 'rxjs/Subscriber';
|
||||
|
||||
// #docregion AsyncPipePromise
|
||||
@Component({
|
||||
|
@ -7,7 +7,9 @@
|
||||
*/
|
||||
|
||||
// #docregion Observable
|
||||
import {Observable, Subscriber} from 'rxjs/Rx';
|
||||
import {Observable} from 'rxjs/Observable';
|
||||
import {Subscriber} from 'rxjs/Subscriber';
|
||||
|
||||
var obs = new Observable<number>((obs: Subscriber<number>) => {
|
||||
var i = 0;
|
||||
setInterval(() => { obs.next(++i); }, 1000);
|
||||
|
@ -9,7 +9,8 @@
|
||||
// #docregion Observable
|
||||
import 'rxjs/add/operator/map';
|
||||
|
||||
import {Observable, Subscriber} from 'rxjs/Rx';
|
||||
import {Observable} from 'rxjs/Observable';
|
||||
import {Subscriber} from 'rxjs/Subscriber';
|
||||
|
||||
var obs = new Observable<number>((obs: Subscriber<any>) => {
|
||||
var i = 0;
|
||||
|
@ -7,7 +7,8 @@
|
||||
*/
|
||||
|
||||
// #docregion Observable
|
||||
import {Observable, Subscriber} from 'rxjs/Rx';
|
||||
import {Observable} from 'rxjs/Observable';
|
||||
import {Subscriber} from 'rxjs/Subscriber';
|
||||
import {map} from 'rxjs/operator/map';
|
||||
|
||||
var obs = new Observable<number>((sub: Subscriber<number>) => {
|
||||
|
@ -8,7 +8,7 @@
|
||||
"author": "angular",
|
||||
"license": "MIT",
|
||||
"peerDependencies": {
|
||||
"rxjs": "5.0.0-beta.6",
|
||||
"rxjs": "5.0.0-beta.11",
|
||||
"@angular/core": "0.0.0-PLACEHOLDER",
|
||||
"@angular/platform-browser": "0.0.0-PLACEHOLDER"
|
||||
},
|
||||
|
@ -25,7 +25,7 @@
|
||||
"@angular/common": "0.0.0-PLACEHOLDER",
|
||||
"@angular/platform-browser": "0.0.0-PLACEHOLDER",
|
||||
"@angular/platform-browser-dynamic": "0.0.0-PLACEHOLDER",
|
||||
"rxjs": "5.0.0-beta.6"
|
||||
"rxjs": "5.0.0-beta.11"
|
||||
},
|
||||
"typings": "index.d.ts"
|
||||
}
|
||||
|
Reference in New Issue
Block a user