Skip to content

Commit

Permalink
build(lib): release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicky Lenaers committed Dec 12, 2018
1 parent 5b9cb85 commit 305b7bc
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 16 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="2.0.0"></a>
# [2.0.0](https://github.com/nicky-lenaers/ngx-scroll-to/compare/1.1.1...2.0.0) (2018-12-12)


### Features

* **lib:** support for angular v7 ([#114](https://github.com/nicky-lenaers/ngx-scroll-to/issues/114)) ([5b9cb85](https://github.com/nicky-lenaers/ngx-scroll-to/commit/5b9cb85))



<a name="1.1.1"></a>
## [1.1.1](https://github.com/nicky-lenaers/ngx-scroll-to/compare/1.1.0...1.1.1) (2018-09-12)

Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<p>
A simple Angular 4+ plugin enabling you to smooth scroll to any element on your page and enhance scroll-based features in your app. Works for <strong>Angular 4+</strong>, both <strong>AoT</strong> and <strong>SSR</strong>. No dependencies.
</p>
<strong>Support for Angular 6!</strong>
<strong>Support for Angular 7!</strong>
<br/>
<br/>
</div>
Expand Down Expand Up @@ -105,13 +105,17 @@ Current Angular Version
[![npm version](https://img.shields.io/npm/v/%40angular%2Fcore.svg?style=flat-square)](https://www.npmjs.com/~angular)

## Installation
Angular 6
Angular 7
```sh
$ npm install @nicky-lenaers/ngx-scroll-to
```
Angular 6
```sh
$ npm install @nicky-lenaers/ngx-scroll-to@'1'
```
Angular <= 5.x
```sh
$ npm install @nicky-lenaers/ngx-scroll-to@"<1"
$ npm install @nicky-lenaers/ngx-scroll-to@'<1'
```

## Setup
Expand Down
30 changes: 22 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions 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": "1.0.0",
"version": "2.0.0",
"license": "MIT",
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
Expand All @@ -12,10 +12,10 @@
"ng:lint": "ng lint",
"ng:serve": "ng serve",
"copy:readme": "copyfiles README.md ./dist/ngx-scroll-to",
"lib:package": "cd ./projects/ngx-scroll-to && npm run build",
"postlib:package": "npm run copy:readme && cd ./dist/ngx-scroll-to && npm pack",
"lib:build": "ng build ngx-scroll-to",
"lib:package": "ng build ngx-scroll-to && npm run copy:readme && cd ./dist/ngx-scroll-to && npm pack",
"prelib:publish": "npm run lib:package",
"lib:publish": "cd ./dist/ngx-scroll-to && npm publish --access=public",
"prelib:publish": "npm run scroll-to:package",
"lib:test": "ng test ngx-scroll-to --watch=false",
"lib:test:watch": "ng test ngx-scroll-to --watch=true",
"start": "ng serve",
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": "1.1.1",
"version": "2.0.0",
"scripts": {
"build": "ng build"
},
Expand Down

0 comments on commit 305b7bc

Please sign in to comment.