Remove uneeded rxjs-compat
This commit is contained in:
parent
a2788c698e
commit
4d089429fe
6 changed files with 6 additions and 11 deletions
|
@ -92,7 +92,6 @@
|
||||||
"raw-loader": "^0.5.1",
|
"raw-loader": "^0.5.1",
|
||||||
"resolve-url-loader": "^2.0.0",
|
"resolve-url-loader": "^2.0.0",
|
||||||
"rxjs": "^6.1.0",
|
"rxjs": "^6.1.0",
|
||||||
"rxjs-compat": "^6.1.0",
|
|
||||||
"sanitize-html": "^1.16.3",
|
"sanitize-html": "^1.16.3",
|
||||||
"sass-loader": "^7.0.1",
|
"sass-loader": "^7.0.1",
|
||||||
"sass-resources-loader": "^1.2.1",
|
"sass-resources-loader": "^1.2.1",
|
||||||
|
|
|
@ -4,7 +4,7 @@ import { FormReactive, UserService } from '../../../shared'
|
||||||
import { User } from '@app/shared'
|
import { User } from '@app/shared'
|
||||||
import { I18n } from '@ngx-translate/i18n-polyfill'
|
import { I18n } from '@ngx-translate/i18n-polyfill'
|
||||||
import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
|
import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
|
||||||
import { Subject } from 'rxjs/Subject'
|
import { Subject } from 'rxjs'
|
||||||
import { UserValidatorsService } from '@app/shared/forms/form-validators/user-validators.service'
|
import { UserValidatorsService } from '@app/shared/forms/form-validators/user-validators.service'
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
|
|
|
@ -5,7 +5,7 @@ import { AuthService } from '../../../core'
|
||||||
import { FormReactive, User, UserService } from '../../../shared'
|
import { FormReactive, User, UserService } from '../../../shared'
|
||||||
import { I18n } from '@ngx-translate/i18n-polyfill'
|
import { I18n } from '@ngx-translate/i18n-polyfill'
|
||||||
import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
|
import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
|
||||||
import { Subject } from 'rxjs/Subject'
|
import { Subject } from 'rxjs'
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'my-account-video-settings',
|
selector: 'my-account-video-settings',
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
import { Component, OnInit, OnDestroy } from '@angular/core'
|
import { Component, OnDestroy, OnInit } from '@angular/core'
|
||||||
import { ActivatedRoute } from '@angular/router'
|
import { ActivatedRoute } from '@angular/router'
|
||||||
import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
|
import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
|
||||||
import { VideoChannelService } from '@app/shared/video-channel/video-channel.service'
|
import { VideoChannelService } from '@app/shared/video-channel/video-channel.service'
|
||||||
import { RestExtractor } from '@app/shared'
|
import { RestExtractor } from '@app/shared'
|
||||||
import { catchError, switchMap, map, distinctUntilChanged } from 'rxjs/operators'
|
import { catchError, distinctUntilChanged, map, switchMap } from 'rxjs/operators'
|
||||||
import { Subscription } from 'rxjs/Subscription'
|
import { Subscription } from 'rxjs'
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
templateUrl: './video-channels.component.html',
|
templateUrl: './video-channels.component.html',
|
||||||
|
|
|
@ -2,7 +2,7 @@ import { debounceTime, distinctUntilChanged } from 'rxjs/operators'
|
||||||
import { Component, forwardRef, Input, OnInit } from '@angular/core'
|
import { Component, forwardRef, Input, OnInit } from '@angular/core'
|
||||||
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms'
|
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms'
|
||||||
import { MarkdownService } from '@app/videos/shared'
|
import { MarkdownService } from '@app/videos/shared'
|
||||||
import { Subject } from 'rxjs/Subject'
|
import { Subject } from 'rxjs'
|
||||||
import truncate from 'lodash-es/truncate'
|
import truncate from 'lodash-es/truncate'
|
||||||
import { ScreenService } from '@app/shared/misc/screen.service'
|
import { ScreenService } from '@app/shared/misc/screen.service'
|
||||||
|
|
||||||
|
|
|
@ -8510,10 +8510,6 @@ rust-result@^1.0.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
individual "^2.0.0"
|
individual "^2.0.0"
|
||||||
|
|
||||||
rxjs-compat@^6.1.0:
|
|
||||||
version "6.2.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/rxjs-compat/-/rxjs-compat-6.2.0.tgz#2eb49cc6ac20d0d7057c6887d1895beaab0966f9"
|
|
||||||
|
|
||||||
rxjs@^5.5.2:
|
rxjs@^5.5.2:
|
||||||
version "5.5.11"
|
version "5.5.11"
|
||||||
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.11.tgz#f733027ca43e3bec6b994473be4ab98ad43ced87"
|
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.11.tgz#f733027ca43e3bec6b994473be4ab98ad43ced87"
|
||||||
|
|
Loading…
Reference in a new issue