Skip to content

Commit

Permalink
build: update to Angular 16
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Angular peer dependency versions are now >=15.0.0 <=16.x.x
  • Loading branch information
jeremy-eychenne committed Dec 12, 2024
1 parent 4f84a25 commit 6a8ac83
Show file tree
Hide file tree
Showing 4 changed files with 2,073 additions and 1,551 deletions.
7 changes: 6 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@
{
"selector": "objectLiteralProperty",
"leadingUnderscore": "allow",
"format": ["camelCase", "PascalCase", "snake_case", "UPPER_CASE"]
"format": [
"camelCase",
"PascalCase",
"snake_case",
"UPPER_CASE"
]
}
],
"arrow-parens": [
Expand Down
46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,39 +15,39 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.10",
"@angular/common": "^15.2.10",
"@angular/compiler": "^15.2.10",
"@angular/core": "^15.2.10",
"@angular/forms": "^15.2.10",
"@angular/platform-browser": "^15.2.10",
"@angular/platform-browser-dynamic": "^15.2.10",
"@angular/router": "^15.2.10",
"@angular/animations": "^16.2.12",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/forms": "^16.2.12",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/router": "^16.2.12",
"hammerjs": "^2.0.8",
"ol": "~7.5.2",
"rxjs": "~7.5.0",
"tslib": "^2.5.0",
"zone.js": "~0.11.4"
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.11",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/cli": "^15.2.11",
"@angular/compiler-cli": "^15.2.10",
"@angular/language-service": "^15.2.10",
"@angular-devkit/build-angular": "^16.2.16",
"@angular-eslint/builder": "19.0.2",
"@angular-eslint/eslint-plugin": "19.0.2",
"@angular-eslint/eslint-plugin-template": "19.0.2",
"@angular-eslint/schematics": "19.0.2",
"@angular-eslint/template-parser": "19.0.2",
"@angular/cli": "^16.2.16",
"@angular/compiler-cli": "^16.2.12",
"@angular/language-service": "^16.2.12",
"@types/arcgis-rest-api": "^10.4.5",
"@types/hammerjs": "^2.0.41",
"@types/jasmine": "~5.1.5",
"@types/node": "^12.11.1",
"@types/topojson-specification": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"commit-and-tag-version": "^11.3.0",
"eslint": "^8.28.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^47.0.2",
"eslint-plugin-prefer-arrow": "latest",
Expand All @@ -59,11 +59,11 @@
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "~15.2.2",
"ng-packagr": "~16.2.3",
"prettier": "^3.4.2",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"typescript": "~4.8.4"
"typescript": "~4.9.3"
},
"volta": {
"node": "18.20.5"
Expand Down
4 changes: 2 additions & 2 deletions projects/ngx-openlayers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"release": "commit-and-tag-version -m \"chore(release): version %s\" -t \"\" --prerelease next"
},
"peerDependencies": {
"@angular/common": ">=14.0.0 <=15.x.x",
"@angular/core": ">=14.0.0 <=15.x.x",
"@angular/common": ">=15.0.0 <=16.x.x",
"@angular/core": ">=15.0.0 <=16.x.x",
"ol": "~7.5.2"
}
}
Loading

0 comments on commit 6a8ac83

Please sign in to comment.