From bf165dc1d36235da209a38acc3b42b8aa257e826 Mon Sep 17 00:00:00 2001 From: team-tf-cdk <84392119+team-tf-cdk@users.noreply.github.com> Date: Wed, 15 Jan 2025 15:05:57 +0100 Subject: [PATCH] chore(deps): update jsii & typescript version to `5.4.0` (#1500) Triggered by https://github.com/cdktf/cdktf-repository-manager/actions/runs/12789323468 --------- Signed-off-by: team-tf-cdk --- .projenrc.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.projenrc.js b/.projenrc.js index e7d4cf1d0..e4b6fc16e 100644 --- a/.projenrc.js +++ b/.projenrc.js @@ -5,7 +5,6 @@ const { CdktfProviderProject } = require("@cdktf/provider-project"); -/** JSII and TS should always use the same major/minor version range */ const typescriptVersion = "~5.4.0"; const project = new CdktfProviderProject({ useCustomGithubRunner: false, @@ -13,8 +12,8 @@ const project = new CdktfProviderProject({ cdktfVersion: "^0.20.0", constructsVersion: "^10.3.0", minNodeVersion: "18.12.0", - typescriptVersion, - jsiiVersion: typescriptVersion, + typescriptVersion: "~5.4.0", // JSII and TS should always use the same major/minor version range + jsiiVersion: "~5.4.0", // JSII and TS should always use the same major/minor version range devDeps: ["@cdktf/provider-project@^0.6.0"], isDeprecated: false, });