Skip to content

Commit

Permalink
feat: 🎸 upgrade to Angular 18 (#660)
Browse files Browse the repository at this point in the history
* feat: 🎸 upgrade to Angular 18

BREAKING CHANGE: 🧨 The library now required a min version of Angular 18.0.0

- npx ng update @angular/core@18 @angular/cli@18 @angular/cdk@18
  @angular-eslint/schematics@18 --force
- yarn upgrade jest-preset-angular@14.1.0
- yarn upgrade @angular-builders/jest@18
- yarn upgrade browserslist (fix BrowserslistError)

* ci: 🎡 bump @angular peer dependencies to v18

BREAKING CHANGE: 🧨 angular v18
  • Loading branch information
chimurai committed Jun 18, 2024
1 parent 30b96b8 commit 74f2e0b
Show file tree
Hide file tree
Showing 3 changed files with 2,408 additions and 2,235 deletions.
46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,26 +30,26 @@
"release:dry": "cd projects/spectator && standard-version --infile ../../CHANGELOG.md --dry-run"
},
"devDependencies": {
"@angular-builders/jest": "^17.0.0",
"@angular-devkit/build-angular": "^17.3.0",
"@angular-devkit/schematics": "^17.3.0",
"@angular-eslint/builder": "17.3.0",
"@angular-eslint/eslint-plugin": "17.3.0",
"@angular-eslint/eslint-plugin-template": "17.3.0",
"@angular-eslint/schematics": "17.3.0",
"@angular-eslint/template-parser": "17.3.0",
"@angular/animations": "^17.3.0",
"@angular/cdk": "^17.3.0",
"@angular/cli": "^17.3.0",
"@angular/common": "^17.3.0",
"@angular/compiler": "^17.3.0",
"@angular/compiler-cli": "^17.3.0",
"@angular/core": "^17.3.0",
"@angular/forms": "^17.3.0",
"@angular/language-service": "^17.3.0",
"@angular/platform-browser": "^17.3.0",
"@angular/platform-browser-dynamic": "^17.3.0",
"@angular/router": "17.3.0",
"@angular-builders/jest": "^18.0.0",
"@angular-devkit/build-angular": "^18.0.2",
"@angular-devkit/schematics": "^18.0.2",
"@angular-eslint/builder": "18.0.1",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/schematics": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/animations": "^18.0.1",
"@angular/cdk": "^18.0.1",
"@angular/cli": "^18.0.2",
"@angular/common": "^18.0.1",
"@angular/compiler": "^18.0.1",
"@angular/compiler-cli": "^18.0.1",
"@angular/core": "^18.0.1",
"@angular/forms": "^18.0.1",
"@angular/language-service": "^18.0.1",
"@angular/platform-browser": "^18.0.1",
"@angular/platform-browser-dynamic": "^18.0.1",
"@angular/router": "18.0.1",
"@commitlint/cli": "17.3.0",
"@commitlint/config-angular": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
Expand All @@ -69,20 +69,20 @@
"jasmine-core": "5.1.1",
"jasmine-spec-reporter": "7.0.0",
"jest": "29.7.0",
"jest-preset-angular": "14.0.2",
"jest-preset-angular": "14.1.0",
"karma": "6.4.2",
"karma-chrome-launcher": "3.2.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"lint-staged": "^13.1.0",
"ng-packagr": "17.0.2",
"ng-packagr": "18.0.0",
"prettier": "3.2.5",
"rxjs": "7.8.1",
"standard-version": "^9.1.0",
"ts-node": "10.1.0",
"tslib": "^2.6.2",
"typescript": "5.2.2",
"typescript": "5.4.5",
"zone.js": "0.14.3"
},
"config": {
Expand Down
6 changes: 3 additions & 3 deletions projects/spectator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
"tslib": "^2.6.2"
},
"peerDependencies": {
"@angular/common": ">= 17.3.0",
"@angular/router": ">= 17.3.0",
"@angular/animations": ">= 17.3.0"
"@angular/common": ">= 18.0.0",
"@angular/router": ">= 18.0.0",
"@angular/animations": ">= 18.0.0"
},
"schematics": "./schematics/collection.json"
}
Loading

0 comments on commit 74f2e0b

Please sign in to comment.