diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-05-11 10:12:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-11 14:12:58 +0000 |
commit | b8495e0377ccd328a75762e349e4ad2f060b2a25 (patch) | |
tree | 2e77dc900be7036afbe6f1fceb8d2e0f2d566419 /cli/build.rs | |
parent | ffb0318e4a2427abd0ab9c77ab48ef57357b0dc0 (diff) |
fix(cli): upgrade to Typescript 5.0.4 (#19090)
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 560c8ceae..2b2181bae 100644 --- a/cli/build.rs +++ b/cli/build.rs @@ -467,7 +467,7 @@ fn main() { ); let ts_version = ts::version(); - debug_assert_eq!(ts_version, "5.0.3"); // bump this assertion when it changes + debug_assert_eq!(ts_version, "5.0.4"); // bump this assertion when it changes println!("cargo:rustc-env=TS_VERSION={}", ts_version); println!("cargo:rerun-if-env-changed=TS_VERSION"); |