Skip to content

Commit 0b22117

Browse files
authored
Merge pull request #48 from antoniovlx/feat/upgrade-to-angular-14
feat: upgrade angular to 14
2 parents 00d8ef9 + 0d4cb93 commit 0b22117

File tree

5 files changed

+9584
-9030
lines changed

5 files changed

+9584
-9030
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ If you're willing to contribute to that project, feel free to do so.
165165
- Create a branch ex: `git checkout -b /feat/my-feature` or `git checkout -b /fix/my-fix`
166166
- Make some changes
167167
- Run `yarn run prettier:write` to make sure formatting is fine
168+
- Run `yarn run lib:build:prod` to build the library
168169
- Run `yarn run demo:test` to make sure all the tests are passing
169170
- Commit your changes using the [Angular commit message conventions](https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#-git-commit-guidelines)
170171
- Open a pull request

package.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -26,28 +26,28 @@
2626
},
2727
"private": true,
2828
"dependencies": {
29-
"@angular/animations": "13.1.2",
30-
"@angular/common": "13.1.2",
31-
"@angular/compiler": "13.1.2",
32-
"@angular/core": "13.1.2",
33-
"@angular/forms": "13.1.2",
34-
"@angular/platform-browser": "13.1.2",
35-
"@angular/platform-browser-dynamic": "13.1.2",
36-
"@angular/router": "13.1.2",
29+
"@angular/animations": "^14.1.2",
30+
"@angular/common": "^14.1.2",
31+
"@angular/compiler": "^14.1.2",
32+
"@angular/core": "^14.1.2",
33+
"@angular/forms": "^14.1.2",
34+
"@angular/platform-browser": "^14.1.2",
35+
"@angular/platform-browser-dynamic": "^14.1.2",
36+
"@angular/router": "^14.1.2",
3737
"core-js": "3.6.5",
3838
"rxjs": "6.6.3",
3939
"zone.js": "~0.11.4"
4040
},
4141
"devDependencies": {
42-
"@angular-devkit/build-angular": "13.1.3",
43-
"@angular-eslint/builder": "13.0.1",
44-
"@angular-eslint/eslint-plugin": "13.0.1",
45-
"@angular-eslint/eslint-plugin-template": "13.0.1",
46-
"@angular-eslint/schematics": "13.0.1",
47-
"@angular-eslint/template-parser": "13.0.1",
48-
"@angular/cli": "13.1.3",
49-
"@angular/compiler-cli": "13.1.2",
50-
"@angular/language-service": "13.1.2",
42+
"@angular-devkit/build-angular": "^14.1.3",
43+
"@angular-eslint/builder": "^14.0.1",
44+
"@angular-eslint/eslint-plugin": "^14.0.1",
45+
"@angular-eslint/eslint-plugin-template": "^14.0.1",
46+
"@angular-eslint/schematics": "^14.0.1",
47+
"@angular-eslint/template-parser": "^14.0.1",
48+
"@angular/cli": "^14.1.3",
49+
"@angular/compiler-cli": "^14.1.2",
50+
"@angular/language-service": "^14.1.2",
5151
"@types/jasmine": "~3.6.0",
5252
"@types/jasminewd2": "2.0.8",
5353
"@types/node": "14.6.4",
@@ -61,15 +61,15 @@
6161
"karma-coverage-istanbul-reporter": "3.0.3",
6262
"karma-jasmine": "~4.0.0",
6363
"karma-jasmine-html-reporter": "^1.5.0",
64-
"ng-packagr": "13.1.3",
64+
"ng-packagr": "^14.1.3",
6565
"prettier": "2.5.1",
6666
"protractor": "7.0.0",
6767
"semantic-release": "17.1.1",
6868
"ts-node": "9.0.0",
69-
"tsickle": "^0.39.1",
69+
"tsickle": "^0.46.3",
7070
"tslib": "^2.3.1",
7171
"tslint-config-prettier": "1.18.0",
72-
"typescript": "4.5.4"
72+
"typescript": "4.7.2"
7373
},
7474
"repository": {
7575
"type": "git",

projects/ngx-favicon/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ngx-favicon",
33
"version": "0.0.1",
44
"peerDependencies": {
5-
"@angular/common": "^13.0.0",
6-
"@angular/core": "^13.0.0"
5+
"@angular/common": "^14.0.0",
6+
"@angular/core": "^14.0.0"
77
}
88
}

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"moduleResolution": "node",
1010
"experimentalDecorators": true,
1111
"importHelpers": true,
12-
"target": "es5",
12+
"target": "ES2015",
1313
"typeRoots": ["node_modules/@types"],
1414
"lib": ["es2018", "dom"],
1515
"paths": {

0 commit comments

Comments
 (0)