summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-11-04 15:40:05 -0500
committerGitHub <noreply@github.com>2024-11-04 21:40:05 +0100
commitbb3ca84e6d8f4f9f2a30de93bd87e243048a8d74 (patch)
tree32384088d20c494ad0f3c3aca8279672618ee66d
parentd67765b0b48d711cd0878e168ccb1e28178c4006 (diff)
fix(fmt): do not panic for jsx ignore container followed by jsx text (#26723)
-rw-r--r--.dprint.json2
-rw-r--r--Cargo.lock4
-rw-r--r--cli/Cargo.toml2
3 files changed, 4 insertions, 4 deletions
diff --git a/.dprint.json b/.dprint.json
index ea99f2aed..489a61e57 100644
--- a/.dprint.json
+++ b/.dprint.json
@@ -68,7 +68,7 @@
"third_party"
],
"plugins": [
- "https://plugins.dprint.dev/typescript-0.93.1.wasm",
+ "https://plugins.dprint.dev/typescript-0.93.2.wasm",
"https://plugins.dprint.dev/json-0.19.4.wasm",
"https://plugins.dprint.dev/markdown-0.17.8.wasm",
"https://plugins.dprint.dev/toml-0.6.3.wasm",
diff --git a/Cargo.lock b/Cargo.lock
index a8a501716..40b0bc171 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2609,9 +2609,9 @@ dependencies = [
[[package]]
name = "dprint-plugin-typescript"
-version = "0.93.1"
+version = "0.93.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5abfd78fe3cde4f5a6699d65f760c8d44da130cf446b6f80a7a9bc6580e156ab"
+checksum = "3ff29fd136541e59d51946f0d2d353fefc886776f61a799ebfb5838b06cef13b"
dependencies = [
"anyhow",
"deno_ast",
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index a3e2b71f0..b4f2e614f 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -107,7 +107,7 @@ dotenvy = "0.15.7"
dprint-plugin-json = "=0.19.4"
dprint-plugin-jupyter = "=0.1.5"
dprint-plugin-markdown = "=0.17.8"
-dprint-plugin-typescript = "=0.93.1"
+dprint-plugin-typescript = "=0.93.2"
env_logger = "=0.10.0"
fancy-regex = "=0.10.0"
faster-hex.workspace = true