Skip to content

Commit

Permalink
feat: support angular v15 (#403)
Browse files Browse the repository at this point in the history
* feat: support angular v15

* chore: update dev deps
  • Loading branch information
kukhariev committed Dec 1, 2022
1 parent ca55079 commit 4d6de00
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"rules": {
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"@typescript-eslint/no-explicit-any": ["error", { "ignoreRestArgs": true }],
"lines-between-class-members": ["error", "always", { "exceptAfterSingleLine": true }],
"@angular-eslint/component-selector": [
"error",
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,25 +53,25 @@
"@angular-eslint/schematics": "^12.7.0",
"@angular-eslint/template-parser": "^12.7.0",
"@angular/cli": "~12.2.18",
"@angular/common": "~12.2.16",
"@angular/compiler": "~12.2.16",
"@angular/compiler-cli": "~12.2.16",
"@angular/core": "~12.2.16",
"@angular/platform-browser": "~12.2.16",
"@angular/platform-browser-dynamic": "~12.2.16",
"@angular/router": "~12.2.16",
"@angular/common": "~12.2.17",
"@angular/compiler": "~12.2.17",
"@angular/compiler-cli": "~12.2.17",
"@angular/core": "~12.2.17",
"@angular/platform-browser": "~12.2.17",
"@angular/platform-browser-dynamic": "~12.2.17",
"@angular/router": "~12.2.17",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@playwright/test": "^1.25.0",
"@types/jasmine": "~4.0.0",
"@types/node": "^14.18.20",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"@uploadx/core": "latest",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@uploadx/core": "^6.1.1",
"angular-http-server": "^1.10.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jasmine-core": "~4.1.0",
"karma": "~6.3.0",
Expand All @@ -82,7 +82,7 @@
"lint-staged": "^13.0.0",
"ng-packagr": "^12.2.7",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"prettier": "2.8.0",
"recursive-copy": "^2.0.14",
"rimraf": "^3.0.2",
"rxjs": "~6.6.7",
Expand All @@ -92,7 +92,7 @@
"zone.js": "~0.11.4"
},
"peerDependencies": {
"@angular/core": ">=12.0.0 <15.0.0",
"@angular/core": ">=12.0.0 <16.0.0",
"rxjs": "^6.4.0 || ^7.0.0"
},
"lint-staged": {
Expand Down

0 comments on commit 4d6de00

Please sign in to comment.