Skip to content

Commit

Permalink
upgrade to Angular 18
Browse files Browse the repository at this point in the history
  • Loading branch information
Noémi Salaün committed Aug 28, 2024
1 parent aed7bc0 commit d3b8934
Show file tree
Hide file tree
Showing 6 changed files with 2,993 additions and 4,161 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 18.0.0 (2024-08-28)

- Compatibility with Angular 18.

## 17.0.0 (2024-05-13)

- Compatibility with Angular 17.
Expand Down
16 changes: 9 additions & 7 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,26 +65,28 @@
"prefix": "demo",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/demo",
"outputPath": {
"base": "dist/demo"
},
"index": "projects/demo/src/index.html",
"main": "projects/demo/src/main.ts",
"polyfills": "projects/demo/src/polyfills.ts",
"polyfills": [
"projects/demo/src/polyfills.ts"
],
"tsConfig": "projects/demo/tsconfig.demo.json",
"assets": [
"projects/demo/src/favicon.ico"
],
"styles": [
"projects/demo/src/styles.css"
],
"scripts": []
"scripts": [],
"browser": "projects/demo/src/main.ts"
},
"configurations": {
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kaiu/material-contextual-menu",
"version": "17.0.0",
"version": "18.0.0",
"description": "This package provide an @angular/material compatible contextual menu.",
"author": "Noémi Salaün",
"repository": {
Expand All @@ -27,26 +27,26 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^17.3.8",
"@angular/cdk": "^16.2.13",
"@angular/common": "^17.3.8",
"@angular/compiler": "^17.3.8",
"@angular/core": "^17.3.8",
"@angular/forms": "^17.3.8",
"@angular/material": "^16.2.13",
"@angular/platform-browser": "^17.3.8",
"@angular/platform-browser-dynamic": "^17.3.8",
"@angular/router": "^17.3.8",
"@angular/animations": "^18.2.1",
"@angular/cdk": "^18.2.1",
"@angular/common": "^18.2.1",
"@angular/compiler": "^18.2.1",
"@angular/core": "^18.2.1",
"@angular/forms": "^18.2.1",
"@angular/material": "^18.2.1",
"@angular/platform-browser": "^18.2.1",
"@angular/platform-browser-dynamic": "^18.2.1",
"@angular/router": "^18.2.1",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.5"
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.7",
"@angular/cli": "^17.3.7",
"@angular/compiler-cli": "^17.3.8",
"@angular-devkit/build-angular": "^18.2.1",
"@angular/cli": "^18.2.1",
"@angular/compiler-cli": "^18.2.1",
"@types/node": "^12.11.1",
"ng-packagr": "^17.3.0",
"ng-packagr": "^18.2.1",
"typescript": "~5.4.5"
}
}
}
10 changes: 5 additions & 5 deletions projects/material-contextual-menu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kaiu/material-contextual-menu",
"version": "17.0.0",
"version": "18.0.0",
"description": "This package provide an @angular/material compatible contextual menu.",
"author": "Noémi Salaün",
"repository": {
Expand All @@ -20,10 +20,10 @@
],
"license": "MIT",
"peerDependencies": {
"@angular/common": "^17.0.0",
"@angular/core": "^17.0.0",
"@angular/material": "^17.0.0",
"@angular/cdk": "^17.0.0"
"@angular/common": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/material": "^18.0.0",
"@angular/cdk": "^18.0.0"
},
"dependencies": {
"tslib": "^2.3.0"
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
Expand All @@ -17,7 +18,6 @@
]
},
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
Expand Down
Loading

0 comments on commit d3b8934

Please sign in to comment.