Skip to content

Commit ab36165

Browse files
committed
refactor: updated all dependencies
1 parent 3f25350 commit ab36165

18 files changed

+6247
-8352
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ indent_size = 2
88
insert_final_newline = true
99
trim_trailing_whitespace = true
1010

11+
[*.ts]
12+
quote_type = single
13+
1114
[*.md]
1215
max_line_length = off
1316
trim_trailing_whitespace = false

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
# profiling files
1414
chrome-profiler-events*.json
15-
speed-measure-plugin*.json
1615

1716
# IDEs and editors
1817
/.idea

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ngx-input-uppercase
1+
# ngx-input-uppercase | Angular 6+
22

33
You know that input you need to uppercase it? So, do it extremely simply!
44

angular.json

Lines changed: 11 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"cli": {
4+
"analytics": false
5+
},
36
"version": 1,
47
"newProjectRoot": "projects",
58
"projects": {
@@ -10,16 +13,19 @@
1013
"prefix": "lib",
1114
"architect": {
1215
"build": {
13-
"builder": "@angular-devkit/build-ng-packagr:build",
16+
"builder": "@angular-devkit/build-angular:ng-packagr",
1417
"options": {
15-
"tsConfig": "projects/ngx-input-uppercase/tsconfig.lib.json",
1618
"project": "projects/ngx-input-uppercase/ng-package.json"
1719
},
1820
"configurations": {
1921
"production": {
2022
"tsConfig": "projects/ngx-input-uppercase/tsconfig.lib.prod.json"
23+
},
24+
"development": {
25+
"tsConfig": "projects/ngx-input-uppercase/tsconfig.lib.json"
2126
}
22-
}
27+
},
28+
"defaultConfiguration": "production"
2329
},
2430
"test": {
2531
"builder": "@angular-devkit/build-angular:karma",
@@ -28,23 +34,9 @@
2834
"tsConfig": "projects/ngx-input-uppercase/tsconfig.spec.json",
2935
"karmaConfig": "projects/ngx-input-uppercase/karma.conf.js"
3036
}
31-
},
32-
"lint": {
33-
"builder": "@angular-devkit/build-angular:tslint",
34-
"options": {
35-
"tsConfig": [
36-
"projects/ngx-input-uppercase/tsconfig.lib.json",
37-
"projects/ngx-input-uppercase/tsconfig.spec.json"
38-
],
39-
"exclude": [
40-
"**/node_modules/**"
41-
]
42-
}
4337
}
4438
}
45-
}},
46-
"cli": {
47-
"analytics": false
39+
}
4840
},
4941
"defaultProject": "ngx-input-uppercase"
50-
}
42+
}

0 commit comments

Comments
 (0)