build(docs-infra): remove the dependency on rxjs-compat (#19795)

PR Close #19795
This commit is contained in:
George Kalpakas
2018-04-18 09:31:46 +03:00
committed by Matias Niemelä
parent 53c1efb50a
commit f71cce7f9b
6 changed files with 1 additions and 10 deletions

View File

@ -2,8 +2,6 @@ import { Injectable } from '@angular/core';
import { from as fromPromise, Observable } from 'rxjs';
import { first, map, share } from 'rxjs/operators';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/share';
import { Logger } from 'app/shared/logger.service';

View File

@ -1,7 +1,6 @@
import { AfterViewInit, Component, ElementRef, OnDestroy, OnInit, QueryList, ViewChildren } from '@angular/core';
import { asapScheduler as asap, combineLatest, Subject } from 'rxjs';
import { startWith, subscribeOn, takeUntil } from 'rxjs/operators';
import 'rxjs/add/operator/startWith';
import { ScrollService } from 'app/shared/scroll.service';
import { TocItem, TocService } from 'app/shared/toc.service';

View File

@ -3,7 +3,6 @@ import { HttpClient, HttpErrorResponse } from '@angular/common/http';
import { AsyncSubject, Observable, of } from 'rxjs';
import { catchError, switchMap, tap } from 'rxjs/operators';
import 'rxjs/add/operator/do';
import { DocumentContents } from './document-contents';
export { DocumentContents } from './document-contents';