diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-09-26 12:57:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-26 12:57:50 -0400 |
commit | 1628dba6db3f9cd5d9730a95f5c06573f66361ca (patch) | |
tree | 87804015c1bdbd6830b6b46c1dd685143955a546 | |
parent | 075bdfd6213a532f1d5dc5381722cc534746e58d (diff) |
fix(fmt): keep type args in type queries and keep empty array expr element's trailing comma (#16034)
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 1c51dae01..4db44e868 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1431,9 +1431,9 @@ dependencies = [ [[package]] name = "dprint-plugin-typescript" -version = "0.73.1" +version = "0.74.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33e614c08c52c6161bde5814f2e69b0a83dcf07ce647b79da30ba5df2e879b74" +checksum = "602b5d9913bcff254b60c3bc26f2b2056a6e343d735785d2760a369c71b8dcfe" dependencies = [ "anyhow", "deno_ast", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 1b594968a..0663c02ff 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -67,7 +67,7 @@ data-url = "=0.1.1" dissimilar = "=1.0.4" dprint-plugin-json = "=0.15.6" dprint-plugin-markdown = "=0.14.1" -dprint-plugin-typescript = "=0.73.1" +dprint-plugin-typescript = "=0.74.0" encoding_rs = "=0.8.31" env_logger = "=0.9.0" eszip = "=0.28.0" |