diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-03-31 13:09:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-31 17:09:04 +0000 |
commit | 7ec45770c875b27f71e82138b2ac03610ad3b47b (patch) | |
tree | 259f0efed7106f0d1880df1959df94a7f0c9e533 /cli/build.rs | |
parent | 87ccd4bcd14bd67037c709829575f62caf8251bb (diff) |
fix: upgrade to TypeScript 5.0.3 (#18532)
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 30e63f679..2a7327a90 100644 --- a/cli/build.rs +++ b/cli/build.rs @@ -465,7 +465,7 @@ fn main() { ); let ts_version = ts::version(); - debug_assert_eq!(ts_version, "5.0.2"); // bump this assertion when it changes + debug_assert_eq!(ts_version, "5.0.3"); // bump this assertion when it changes println!("cargo:rustc-env=TS_VERSION={}", ts_version); println!("cargo:rerun-if-env-changed=TS_VERSION"); |