mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 19:08:15 +00:00
fix: correct reported typescript version (#29053)
https://github.com/denoland/deno/pull/29041#issuecomment-2831398138
This commit is contained in:
parent
ec8e683de9
commit
ace8d2efb9
3 changed files with 3 additions and 3 deletions
|
@ -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();
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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");
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue