From 90688edcc26ee6446acf0295bb7c25cfc33934a1 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Thu, 18 Apr 2024 20:37:16 -0400 Subject: [PATCH] fix(fmt): error for more unterminated nodes (#23449) https://github.com/dprint/dprint-plugin-typescript/pull/628 Closes https://github.com/denoland/deno/issues/23438 --- .dprint.json | 2 +- Cargo.lock | 4 ++-- cli/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.dprint.json b/.dprint.json index 538d10fc90..45e3d5757f 100644 --- a/.dprint.json +++ b/.dprint.json @@ -57,7 +57,7 @@ "ext/websocket/autobahn/reports" ], "plugins": [ - "https://plugins.dprint.dev/typescript-0.90.1.wasm", + "https://plugins.dprint.dev/typescript-0.90.3.wasm", "https://plugins.dprint.dev/json-0.19.2.wasm", "https://plugins.dprint.dev/markdown-0.16.4.wasm", "https://plugins.dprint.dev/toml-0.6.1.wasm", diff --git a/Cargo.lock b/Cargo.lock index 857fe13e6f..a0a5101157 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2302,9 +2302,9 @@ dependencies = [ [[package]] name = "dprint-plugin-typescript" -version = "0.90.2" +version = "0.90.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f46179b46809eb71f8d73898a5ef4660a0e60df4bf17821654eec771cbf457ec" +checksum = "e1339c9a9642a58bd6ac77018b5e06a1dd61f524a8097586231112839dcc7c70" dependencies = [ "anyhow", "deno_ast", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index f7d4030596..8d376e0b74 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -98,7 +98,7 @@ dotenvy = "0.15.7" dprint-plugin-json = "=0.19.2" dprint-plugin-jupyter = "=0.1.3" dprint-plugin-markdown = "=0.16.4" -dprint-plugin-typescript = "=0.90.2" +dprint-plugin-typescript = "=0.90.3" env_logger = "=0.10.0" fancy-regex = "=0.10.0" faster-hex.workspace = true