diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-08-02 12:29:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-02 06:29:29 -0400 |
commit | bcdf600ae40af8880d9c6d8e0c64179de274290f (patch) | |
tree | 94c101d848acd7fc46167f6db669d3c2f12359c3 | |
parent | 2ca9940f00a0159f2ca55521f7375b6d72e4be9b (diff) |
fix(fmt): handle using stmt in for of stmt (#24834)
Closes #24406
-rw-r--r-- | .dprint.json | 2 | ||||
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.dprint.json b/.dprint.json index 0f1f7226c..fcd6b9073 100644 --- a/.dprint.json +++ b/.dprint.json @@ -65,7 +65,7 @@ "third_party" ], "plugins": [ - "https://plugins.dprint.dev/typescript-0.91.5.wasm", + "https://plugins.dprint.dev/typescript-0.91.6.wasm", "https://plugins.dprint.dev/json-0.19.3.wasm", "https://plugins.dprint.dev/markdown-0.17.2.wasm", "https://plugins.dprint.dev/toml-0.6.2.wasm", diff --git a/Cargo.lock b/Cargo.lock index 0b03022fd..4185f15bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2421,9 +2421,9 @@ dependencies = [ [[package]] name = "dprint-plugin-typescript" -version = "0.91.5" +version = "0.91.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d4a48d899392c00c7b310e2b6f88deb75cd64b860fff85008af667aecb6e78a" +checksum = "390da1b0ba3761f824518a3e4f06ca273837ba16fac73560efd201342b980561" dependencies = [ "anyhow", "deno_ast", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index fed1e5f4d..e06cf7726 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -102,7 +102,7 @@ dotenvy = "0.15.7" dprint-plugin-json = "=0.19.3" dprint-plugin-jupyter = "=0.1.3" dprint-plugin-markdown = "=0.17.2" -dprint-plugin-typescript = "=0.91.5" +dprint-plugin-typescript = "=0.91.6" env_logger = "=0.10.0" fancy-regex = "=0.10.0" faster-hex.workspace = true |