diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-05-08 13:54:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-08 13:54:56 -0400 |
commit | 525b3c8d746b8eb358ed6466cd4b68ebd6542392 (patch) | |
tree | b68c7533939703d67e7e5f3ab44b9980287e4bf1 /cli/build.rs | |
parent | 0e9b7f64f76381e48e20742c7d0682fd8e61f7d4 (diff) |
fix: upgrade TypeScript from 5.4.3 to 5.4.5 (#23740)
https://github.com/denoland/TypeScript/pull/11
Diffstat (limited to 'cli/build.rs')
-rw-r--r-- | cli/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/build.rs b/cli/build.rs index 3b4bfa8a8..b41921fec 100644 --- a/cli/build.rs +++ b/cli/build.rs @@ -453,7 +453,7 @@ fn main() { ); let ts_version = ts::version(); - debug_assert_eq!(ts_version, "5.4.3"); // bump this assertion when it changes + debug_assert_eq!(ts_version, "5.4.5"); // bump this assertion when it changes println!("cargo:rustc-env=TS_VERSION={}", ts_version); println!("cargo:rerun-if-env-changed=TS_VERSION"); |