Skip to content

Commit

Permalink
Merge pull request #48 from antoniovlx/feat/upgrade-to-angular-14
Browse files Browse the repository at this point in the history
feat: upgrade angular to 14
  • Loading branch information
maxime1992 authored Nov 30, 2022
2 parents 00d8ef9 + 0d4cb93 commit 0b22117
Show file tree
Hide file tree
Showing 5 changed files with 9,584 additions and 9,030 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ If you're willing to contribute to that project, feel free to do so.
- Create a branch ex: `git checkout -b /feat/my-feature` or `git checkout -b /fix/my-fix`
- Make some changes
- Run `yarn run prettier:write` to make sure formatting is fine
- Run `yarn run lib:build:prod` to build the library
- Run `yarn run demo:test` to make sure all the tests are passing
- Commit your changes using the [Angular commit message conventions](https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#-git-commit-guidelines)
- Open a pull request
Expand Down
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,28 +26,28 @@
},
"private": true,
"dependencies": {
"@angular/animations": "13.1.2",
"@angular/common": "13.1.2",
"@angular/compiler": "13.1.2",
"@angular/core": "13.1.2",
"@angular/forms": "13.1.2",
"@angular/platform-browser": "13.1.2",
"@angular/platform-browser-dynamic": "13.1.2",
"@angular/router": "13.1.2",
"@angular/animations": "^14.1.2",
"@angular/common": "^14.1.2",
"@angular/compiler": "^14.1.2",
"@angular/core": "^14.1.2",
"@angular/forms": "^14.1.2",
"@angular/platform-browser": "^14.1.2",
"@angular/platform-browser-dynamic": "^14.1.2",
"@angular/router": "^14.1.2",
"core-js": "3.6.5",
"rxjs": "6.6.3",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "13.1.3",
"@angular-eslint/builder": "13.0.1",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/schematics": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/cli": "13.1.3",
"@angular/compiler-cli": "13.1.2",
"@angular/language-service": "13.1.2",
"@angular-devkit/build-angular": "^14.1.3",
"@angular-eslint/builder": "^14.0.1",
"@angular-eslint/eslint-plugin": "^14.0.1",
"@angular-eslint/eslint-plugin-template": "^14.0.1",
"@angular-eslint/schematics": "^14.0.1",
"@angular-eslint/template-parser": "^14.0.1",
"@angular/cli": "^14.1.3",
"@angular/compiler-cli": "^14.1.2",
"@angular/language-service": "^14.1.2",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "2.0.8",
"@types/node": "14.6.4",
Expand All @@ -61,15 +61,15 @@
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "13.1.3",
"ng-packagr": "^14.1.3",
"prettier": "2.5.1",
"protractor": "7.0.0",
"semantic-release": "17.1.1",
"ts-node": "9.0.0",
"tsickle": "^0.39.1",
"tsickle": "^0.46.3",
"tslib": "^2.3.1",
"tslint-config-prettier": "1.18.0",
"typescript": "4.5.4"
"typescript": "4.7.2"
},
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions projects/ngx-favicon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ngx-favicon",
"version": "0.0.1",
"peerDependencies": {
"@angular/common": "^13.0.0",
"@angular/core": "^13.0.0"
"@angular/common": "^14.0.0",
"@angular/core": "^14.0.0"
}
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"moduleResolution": "node",
"experimentalDecorators": true,
"importHelpers": true,
"target": "es5",
"target": "ES2015",
"typeRoots": ["node_modules/@types"],
"lib": ["es2018", "dom"],
"paths": {
Expand Down
Loading

0 comments on commit 0b22117

Please sign in to comment.