mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 12:49:10 +00:00
chore: upgrade dprint plugins (#10397)
This commit is contained in:
parent
8c6f977192
commit
2bd087ab1b
22 changed files with 349 additions and 360 deletions
|
@ -35,8 +35,8 @@
|
|||
"tools/wpt/manifest.json"
|
||||
],
|
||||
"plugins": [
|
||||
"https://plugins.dprint.dev/typescript-0.44.0.wasm",
|
||||
"https://plugins.dprint.dev/json-0.10.1.wasm",
|
||||
"https://plugins.dprint.dev/markdown-0.7.0.wasm"
|
||||
"https://plugins.dprint.dev/typescript-0.44.2.wasm",
|
||||
"https://plugins.dprint.dev/json-0.10.2.wasm",
|
||||
"https://plugins.dprint.dev/markdown-0.7.1.wasm"
|
||||
]
|
||||
}
|
||||
|
|
33
Cargo.lock
generated
33
Cargo.lock
generated
|
@ -823,20 +823,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "dprint-core"
|
||||
version = "0.35.3"
|
||||
version = "0.38.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "93bd44f40b1881477837edc7112695d4b174f058c36c1cbc4c50f8d0482e2ac8"
|
||||
dependencies = [
|
||||
"bumpalo",
|
||||
"fnv",
|
||||
"serde",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "dprint-core"
|
||||
version = "0.37.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1573a8cdbb2fce7f180099a74a0252288a13d7169a9dd43f0f0ff9448a1b1f4e"
|
||||
checksum = "a9eef318dc38909f86fa9723ae9b2fd564554bd8115acbf6f67b89bb9d4101da"
|
||||
dependencies = [
|
||||
"bumpalo",
|
||||
"fnv",
|
||||
|
@ -845,22 +834,22 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "dprint-plugin-json"
|
||||
version = "0.10.1"
|
||||
version = "0.10.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "192d9caba72e0955a19026d139a4e412f9be3b0ba0712f1f584f2cf6e391f472"
|
||||
checksum = "7c68efe8956dface56c5a37120711d076a03c8be02617010d53afd00e46f445d"
|
||||
dependencies = [
|
||||
"dprint-core 0.35.3",
|
||||
"dprint-core",
|
||||
"jsonc-parser",
|
||||
"serde",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "dprint-plugin-markdown"
|
||||
version = "0.7.0"
|
||||
version = "0.7.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "86b08578cbf2afef06f8144db2be7a50a9bcf948a7ec7eae42e936386534af82"
|
||||
checksum = "03143dc4349c85a344418d64d70e9d6cd34cadf6cc720b11f8e85a63f0448916"
|
||||
dependencies = [
|
||||
"dprint-core 0.35.3",
|
||||
"dprint-core",
|
||||
"pulldown-cmark",
|
||||
"regex",
|
||||
"serde",
|
||||
|
@ -868,11 +857,11 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "dprint-plugin-typescript"
|
||||
version = "0.44.1"
|
||||
version = "0.44.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c8008a8a2abd9c476e942bf27ab80719aaeb2cce24eca6815b204fabf7acf7e6"
|
||||
checksum = "a39c58ac72b4233e4dcbac562e9311e85730b457b24c3980d72d762cc76569b4"
|
||||
dependencies = [
|
||||
"dprint-core 0.37.0",
|
||||
"dprint-core",
|
||||
"dprint-swc-ecma-ast-view 0.15.0",
|
||||
"fnv",
|
||||
"serde",
|
||||
|
|
|
@ -41,9 +41,9 @@ byteorder = "1.4.3"
|
|||
clap = "2.33.3"
|
||||
data-url = "0.1.0"
|
||||
dissimilar = "1.0.2"
|
||||
dprint-plugin-json = "0.10.1"
|
||||
dprint-plugin-markdown = "0.7.0"
|
||||
dprint-plugin-typescript = "0.44.0"
|
||||
dprint-plugin-json = "0.10.2"
|
||||
dprint-plugin-markdown = "0.7.1"
|
||||
dprint-plugin-typescript = "0.44.2"
|
||||
encoding_rs = "0.8.28"
|
||||
env_logger = "0.8.3"
|
||||
fancy-regex = "0.5.0"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue