diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-12-01 14:50:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-01 14:50:38 -0500 |
commit | d8e8497eb3049f58632e4d7507090ef9915b3af6 (patch) | |
tree | 288b39a26fa761e372d6f072fe23d03398afc3aa | |
parent | e087851e5422010e2fde5ae291632668d8514c1a (diff) |
fix(fmt): remove trailing comma for single type param in default export in jsx (#21425)
-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 0b3b94e96..d2c80e684 100644 --- a/.dprint.json +++ b/.dprint.json @@ -56,7 +56,7 @@ "ext/websocket/autobahn/reports" ], "plugins": [ - "https://plugins.dprint.dev/typescript-0.88.6.wasm", + "https://plugins.dprint.dev/typescript-0.88.7.wasm", "https://plugins.dprint.dev/json-0.19.1.wasm", "https://plugins.dprint.dev/markdown-0.16.3.wasm", "https://plugins.dprint.dev/toml-0.5.4.wasm", diff --git a/Cargo.lock b/Cargo.lock index df6308eee..1dffcb877 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1973,9 +1973,9 @@ dependencies = [ [[package]] name = "dprint-plugin-typescript" -version = "0.88.6" +version = "0.88.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb7fe06e34987533797220544a8baea26bacbbbc1e81f41c7e654d2e68f41f72" +checksum = "f75fc11fffe73e21ebea5bc1dabb647ef88189bbac91749fbe22ea8c8e660bf3" dependencies = [ "anyhow", "deno_ast", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 1347e4f62..d7837ecf3 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -88,7 +88,7 @@ dotenvy = "0.15.7" dprint-plugin-json = "=0.19.1" dprint-plugin-jupyter = "=0.1.2" dprint-plugin-markdown = "=0.16.3" -dprint-plugin-typescript = "=0.88.6" +dprint-plugin-typescript = "=0.88.7" encoding_rs.workspace = true env_logger = "=0.10.0" fancy-regex = "=0.10.0" |