diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-12-07 17:32:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-07 17:32:24 -0500 |
commit | dac30af1510b12b5d81d2cd437560f8be6c2e01c (patch) | |
tree | b75978fab2513e6c7d92a8efae8ef406680804bf /cli | |
parent | f8bcf6be28a1aab9e3be45755aac644fc65db681 (diff) |
feat(fmt): improve width calculation (#16982)
Formats code according to Unicode Standard Annex #11 rules
(https://crates.io/crates/unicode-width).
This aligns `deno fmt` more with prettier.
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index e5025d5d7..41ff1d2b8 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -61,9 +61,9 @@ clap_complete = "=3.1.2" clap_complete_fig = "=3.1.5" data-url.workspace = true dissimilar = "=1.0.4" -dprint-plugin-json = "=0.16.0" -dprint-plugin-markdown = "=0.14.3" -dprint-plugin-typescript = "=0.78.0" +dprint-plugin-json = "=0.17.0" +dprint-plugin-markdown = "=0.15.0" +dprint-plugin-typescript = "=0.79.0" encoding_rs.workspace = true env_logger = "=0.9.0" eszip = "=0.31.0" @@ -71,7 +71,7 @@ fancy-regex = "=0.10.0" flate2.workspace = true http.workspace = true import_map = "=0.13.0" -indexmap = "=1.9.1" +indexmap = "=1.9.2" indicatif = "=0.17.1" jsonc-parser = { version = "=0.21.0", features = ["serde"] } libc.workspace = true |