Skip to content

Commit a411460

Browse files
committed
update to Angular 13
1 parent e4a1aaa commit a411460

File tree

10 files changed

+15143
-16008
lines changed

10 files changed

+15143
-16008
lines changed

.eslintrc.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"root": true,
3+
"ignorePatterns": [
4+
"projects/**/*"
5+
],
6+
"overrides": [
7+
{
8+
"files": [
9+
"*.ts"
10+
],
11+
"parserOptions": {
12+
"project": [
13+
"tsconfig.json"
14+
],
15+
"createDefaultProgram": true
16+
},
17+
"extends": [
18+
"plugin:@angular-eslint/recommended",
19+
"plugin:@angular-eslint/template/process-inline-templates"
20+
],
21+
"rules": {
22+
"@angular-eslint/no-output-on-prefix": "off"
23+
}
24+
},
25+
{
26+
"files": [
27+
"*.html"
28+
],
29+
"extends": [
30+
"plugin:@angular-eslint/template/recommended"
31+
],
32+
"rules": {}
33+
}
34+
]
35+
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/.angular/cache
12
# Visual Studio
23
.vs/
34
.vscode

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
## Change Log
2+
### [13.0.0](https://github.com/georgipeltekov/ngx-file-drop/compare/v12.0.0...v13.0.0) (2021-12-01)
3+
* Update to Angular 13
4+
5+
### [12.0.0](https://github.com/georgipeltekov/ngx-file-drop/compare/v11.3.0...v12.0.0) (2021-12-01)
6+
* Update to Angular 12
7+
28
### [11.3.0](https://github.com/georgipeltekov/ngx-file-drop/compare/v11.2.0...v11.3.0) (2021-11-04)
39
* Revert 11.2.0
410
* Remove unused interfaces from dom.types

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Overview
44

5-
An Angular 11 module for simple desktop file and folder drag and drop. This library does not need rxjs-compat.
5+
An Angular module for simple desktop file and folder drag and drop. This library does not need rxjs-compat.
66

77
For previous Angular support please use older versions.
88

angular.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,20 @@
2121
}
2222
},
2323
"lint": {
24-
"builder": "@angular-devkit/build-angular:tslint",
24+
"builder": "@angular-eslint/builder:lint",
2525
"options": {
26-
"tsConfig": [
27-
"src/tsconfig.json"
28-
],
29-
"exclude": [
30-
"**/node_modules/**"
26+
"lintFilePatterns": [
27+
"src/**/*.ts",
28+
"src/**/*.html"
3129
]
3230
}
3331
}
3432
}
35-
}},
33+
}
34+
},
3635
"cli": {
37-
"analytics": false
36+
"analytics": false,
37+
"defaultCollection": "@angular-eslint/schematics"
3838
},
3939
"defaultProject": "ngx-file-drop",
4040
"schematics": {

0 commit comments

Comments
 (0)