Skip to content

Commit e25f1de

Browse files
author
Thorsten Rintelen
committed
chore: update to angular 13 and other dependencies
1 parent 8521b08 commit e25f1de

File tree

16 files changed

+20201
-5794
lines changed

16 files changed

+20201
-5794
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ speed-measure-plugin*.json
3232
.history/*
3333

3434
# misc
35+
/.angular/cache
3536
/.sass-cache
3637
/connect.lock
3738
/coverage

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### 8.0.0 (2022-01-13)
2+
3+
### Breaking Change
4+
5+
- Add angular v13 support and remove support for older versions
6+
17
### 7.0.6 (2021-10-17)
28

39
### Other

README.md

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,23 @@ routing has finished) and in both directions (horizontal/vertical)
2222

2323
## Table of contents
2424

25-
- [Service](#service)
26-
- [Setup](#setup)
27-
- [Usage](#usage)
28-
- [Configuration](#configuration)
29-
- [Directive](#directive)
30-
- [Setup](#setup-1)
31-
- [Usage](#usage-1)
32-
- [Directive API](#directive-api)
33-
- [FAQ and common problems](#faq-and-common-problems)
25+
- [ngx-page-scroll ![npm version](https://www.npmjs.com/package/ngx-page-scroll) [![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg)](http://opensource.org/licenses/MIT)](#ngx-page-scroll--)
26+
- [Features](#features)
27+
- [Table of contents](#table-of-contents)
28+
- [Version compatibility](#version-compatibility)
29+
- [Service](#service)
30+
- [Setup](#setup)
31+
- [Usage](#usage)
32+
- [Configuration](#configuration)
33+
- [Directive](#directive)
34+
- [Setup](#setup-1)
35+
- [Usage](#usage-1)
36+
- [Directive API](#directive-api)
37+
- [PageScroll properties](#pagescroll-properties)
38+
- [PageScroll events](#pagescroll-events)
39+
- [Example](#example)
40+
- [FAQ and common problems](#faq-and-common-problems)
41+
- [License](#license)
3442

3543

3644
### Version compatibility
@@ -39,6 +47,7 @@ Install later versions in case your app is not running the very latest angular v
3947

4048
| ngx-page-scroll/ngx-page-scroll-core version | compatible angular version | Documentation |
4149
| -------------------------------------------- | -------------------------- | -------------------------------------------------------------------------- |
50+
| v8.x | v13 | [README](README.md) |
4251
| v7.x | v12, v11, v10, v9, v8 | [README](README.md) |
4352
| v6.x | v8, v7 | [README](https://github.com/Nolanus/ngx-page-scroll/blob/v6.0.2/README.md) |
4453
| v5.x | v6 | [README](https://github.com/Nolanus/ngx-page-scroll/blob/v5.0.1/README.md) |

angular.json

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -106,19 +106,6 @@
106106
"scripts": []
107107
}
108108
},
109-
"lint": {
110-
"builder": "@angular-devkit/build-angular:tslint",
111-
"options": {
112-
"tsConfig": [
113-
"tsconfig.app.json",
114-
"tsconfig.spec.json",
115-
"e2e/tsconfig.json"
116-
],
117-
"exclude": [
118-
"**/node_modules/**"
119-
]
120-
}
121-
},
122109
"e2e": {
123110
"builder": "@angular-devkit/build-angular:protractor",
124111
"options": {
@@ -158,18 +145,6 @@
158145
"tsConfig": "projects/ngx-page-scroll-core/tsconfig.spec.json",
159146
"karmaConfig": "projects/ngx-page-scroll-core/karma.conf.js"
160147
}
161-
},
162-
"lint": {
163-
"builder": "@angular-devkit/build-angular:tslint",
164-
"options": {
165-
"tsConfig": [
166-
"projects/ngx-page-scroll-core/tsconfig.lib.json",
167-
"projects/ngx-page-scroll-core/tsconfig.spec.json"
168-
],
169-
"exclude": [
170-
"**/node_modules/**"
171-
]
172-
}
173148
}
174149
}
175150
},
@@ -198,18 +173,6 @@
198173
"tsConfig": "projects/ngx-page-scroll/tsconfig.spec.json",
199174
"karmaConfig": "projects/ngx-page-scroll/karma.conf.js"
200175
}
201-
},
202-
"lint": {
203-
"builder": "@angular-devkit/build-angular:tslint",
204-
"options": {
205-
"tsConfig": [
206-
"projects/ngx-page-scroll/tsconfig.lib.json",
207-
"projects/ngx-page-scroll/tsconfig.spec.json"
208-
],
209-
"exclude": [
210-
"**/node_modules/**"
211-
]
212-
}
213176
}
214177
}
215178
}

0 commit comments

Comments
 (0)