From ce9ecb600c74bb4c13acc553398cf0a2ffe30884 Mon Sep 17 00:00:00 2001 From: Janne Harju Date: Wed, 16 Aug 2023 17:36:51 +0300 Subject: [PATCH 1/2] Updated package to use angular 16. Node types was also needed to update to 18 because 17 is not supported by angulat 16 and also there was some error when running build command. Readme updated. --- README.md | 4 +++- package.json | 34 +++++++++++++++++----------------- 2 files changed, 20 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 6dc9de3..e38ac83 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # angular2-hotkeys -Angular 13 and Ivy Compatible. Older versions might work but isn't officially tested. +Angular 16 and Ivy Compatible. Older versions might work but isn't officially tested. ## Versions compatibility v2.4.0 - Angular 11 (most likely lower Angular versions) @@ -8,6 +8,8 @@ v13.*.* - Angular 13 (most likely Angular 12) v15.*.* - Angular 15 +v16.*.* - Angular 16 + ## Installation To install this library, run: diff --git a/package.json b/package.json index de3bdf9..af8ae66 100644 --- a/package.json +++ b/package.json @@ -36,22 +36,22 @@ "tslib": "^2.3.1" }, "devDependencies": { - "@angular-devkit/build-angular": "^15.2.7", - "@angular-devkit/core": "^15.2.7", - "@angular/animations": "^15.2.8", - "@angular/cli": "^15.2.7", - "@angular/common": "^15.2.8", - "@angular/compiler": "^15.2.8", - "@angular/compiler-cli": "^15.2.8", - "@angular/core": "^15.2.8", - "@angular/forms": "^15.2.8", - "@angular/language-service": "^15.2.8", - "@angular/platform-browser": "^15.2.8", - "@angular/platform-browser-dynamic": "^15.2.8", - "@angular/router": "^15.2.8", + "@angular-devkit/build-angular": "^16.2.0", + "@angular-devkit/core": "^16.2.0", + "@angular/animations": "^16.2.0", + "@angular/cli": "^16.2.0", + "@angular/common": "^16.2.0", + "@angular/compiler": "^16.2.0", + "@angular/compiler-cli": "^16.2.0", + "@angular/core": "^16.2.0", + "@angular/forms": "^16.2.0", + "@angular/language-service": "^16.2.0", + "@angular/platform-browser": "^16.2.0", + "@angular/platform-browser-dynamic": "^16.2.0", + "@angular/router": "^16.2.0", "@types/jasmine": "~3.10.3", "@types/jasminewd2": "~2.0.10", - "@types/node": "^17.0.14", + "@types/node": "^18.11.9 ", "@types/mousetrap": "^1.6.9", "codelyzer": "^6.0.2", "jasmine-core": "~4.0.0", @@ -61,12 +61,12 @@ "karma-coverage-istanbul-reporter": "~3.0.3", "karma-jasmine": "~4.0.1", "karma-jasmine-html-reporter": "^1.7.0", - "ng-packagr": "^15.2.2", + "ng-packagr": "^16.2.0", "protractor": "~7.0.0", "rxjs": "~7.5.2", "ts-node": "~10.4.0", "tslint": "~6.1.0", - "typescript": "~4.8.4", - "zone.js": "~0.11.4" + "typescript": "~5.1.6", + "zone.js": "~0.13.1" } } From b9560732a3734311115f47f8dfd22662af9bea1b Mon Sep 17 00:00:00 2001 From: Janne Harju Date: Thu, 17 Aug 2023 09:25:45 +0300 Subject: [PATCH 2/2] Package version number updated to 16. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index af8ae66..b60bdf4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "angular2-hotkeys", - "version": "15.0.0", + "version": "16.0.0", "scripts": { "build": "ng build angular2-hotkeys", "build:release": "ng build angular2-hotkeys --configuration production",