Skip to content

Commit

Permalink
fix(lib): replace "... from 'rjx/index'" import by "...from 'rxjs'" (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
squelix authored and Nicky Lenaers committed Mar 26, 2019
1 parent 305b7bc commit 452a986
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nicky-lenaers/ngx-scroll-to-demo",
"description": "Demo Application for @nicky-lenaers/ngx-scroll-to package.",
"version": "2.0.0",
"version": "2.0.1",
"license": "MIT",
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-scroll-to/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nicky-lenaers/ngx-scroll-to",
"description": "A simple Angular 4+ plugin enabling you to smooth scroll to any element on your page and enhance scroll-based features in your app.",
"version": "2.0.0",
"version": "2.0.1",
"scripts": {
"build": "ng build"
},
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-scroll-to/src/lib/scroll-to-animation.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Observable, ReplaySubject } from 'rxjs/index';
import { Observable, ReplaySubject } from 'rxjs';

import { EASING } from './scroll-to-helpers';
import {
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-scroll-to/src/lib/scroll-to.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
DEFAULTS,
isNativeElement
} from './scroll-to-helpers';
import { Observable, ReplaySubject, throwError } from 'rxjs/index';
import { Observable, ReplaySubject, throwError } from 'rxjs';

/**
* The Scroll To Service handles starting, interrupting
Expand Down

0 comments on commit 452a986

Please sign in to comment.