From 5b9b61568adee6d9f7441e377cb467fd47994a69 Mon Sep 17 00:00:00 2001 From: Limon Monte Date: Sat, 1 Oct 2022 17:44:41 +0300 Subject: [PATCH] fix: require Angular >= 14 in peerDependencies --- projects/ngx-sweetalert2/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/ngx-sweetalert2/package.json b/projects/ngx-sweetalert2/package.json index bdc36d0..386f558 100644 --- a/projects/ngx-sweetalert2/package.json +++ b/projects/ngx-sweetalert2/package.json @@ -9,8 +9,8 @@ "tslib": "^2.0.0" }, "peerDependencies": { - "@angular/common": ">=12.0.0", - "@angular/core": ">=12.0.0", + "@angular/common": "^14.0.0", + "@angular/core": "^14.0.0", "sweetalert2": "^11.0.0" } }