From 77c85e40ea01bdb105c4edd45e32a65f2fb50ec4 Mon Sep 17 00:00:00 2001 From: wdoconnell <91283923+wdoconnell@users.noreply.github.com> Date: Fri, 15 Sep 2023 14:35:00 -0400 Subject: [PATCH 1/2] chore: allow ts 5 as a peer dep --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index d658b1d..b7c5ead 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "protoc-gen-ts", "description": "Compile protocol buffers descriptors to Typescript.", - "version": "0.8.7", + "version": "0.8.8", "license": "MIT", "author": { "email": "thesayyn@gmail.com", @@ -26,7 +26,7 @@ }, "peerDependencies": { "google-protobuf": "^3.13.0", - "typescript": "4.x.x" + "typescript": "4.x.x || 5.x.x" }, "devDependencies": { "@bazel/bazelisk": "^1.9.0", From 264897cc1414b6e44011be6c4aaa0d76b2f6900d Mon Sep 17 00:00:00 2001 From: wdoconnell <91283923+wdoconnell@users.noreply.github.com> Date: Fri, 15 Sep 2023 15:02:19 -0400 Subject: [PATCH 2/2] chore: support peerdep ts >= 4.9 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b7c5ead..8610e79 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ }, "peerDependencies": { "google-protobuf": "^3.13.0", - "typescript": "4.x.x || 5.x.x" + "typescript": ">= 4.9.x" }, "devDependencies": { "@bazel/bazelisk": "^1.9.0",