fix: correct reported typescript version (#29053)

https://github.com/denoland/deno/pull/29041#issuecomment-2831398138
This commit is contained in:
David Sherret 2025-04-25 17:27:29 -04:00 committed by GitHub
parent ec8e683de9
commit ace8d2efb9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ pub fn otel_runtime_config() -> OtelRuntimeConfig {
}
const GIT_COMMIT_HASH: &str = env!("GIT_COMMIT_HASH");
const TYPESCRIPT: &str = "5.7.3";
const TYPESCRIPT: &str = "5.8.3";
pub const DENO_VERSION: &str = env!("CARGO_PKG_VERSION");
// TODO(bartlomieju): ideally we could remove this const.
const IS_CANARY: bool = option_env!("DENO_CANARY").is_some();

View file

@ -1,3 +1,3 @@
// Copyright 2018-2025 the Deno authors. MIT license.
pub static TS_VERSION: &str = "5.7.3";
pub static TS_VERSION: &str = "5.8.3";

View file

@ -6,5 +6,5 @@ Deno.test(function version() {
const pattern = /^\d+\.\d+\.\d+/;
assert(pattern.test(Deno.version.deno));
assert(pattern.test(Deno.version.v8));
assertEquals(Deno.version.typescript, "5.7.3");
assertEquals(Deno.version.typescript, "5.8.3");
});