Skip to content

Commit

Permalink
fix: improved using declaration support (denoland#20959)
Browse files Browse the repository at this point in the history
Upgrades to deno_ast 0.30.
  • Loading branch information
dsherret committed Oct 24, 2023
1 parent 9df36b3 commit 8f065a6
Show file tree
Hide file tree
Showing 17 changed files with 152 additions and 122 deletions.
4 changes: 2 additions & 2 deletions .dprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
"ext/websocket/autobahn/reports"
],
"plugins": [
"https://plugins.dprint.dev/typescript-0.88.1.wasm",
"https://plugins.dprint.dev/json-0.17.4.wasm",
"https://plugins.dprint.dev/typescript-0.88.2.wasm",
"https://plugins.dprint.dev/json-0.19.0.wasm",
"https://plugins.dprint.dev/markdown-0.16.2.wasm",
"https://plugins.dprint.dev/toml-0.5.4.wasm",
"https://plugins.dprint.dev/exec-0.4.3.json@42343548b8022c99b1d750be6b894fe6b6c7ee25f72ae9f9082226dd2e515072"
Expand Down
115 changes: 61 additions & 54 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ license = "MIT"
repository = "https://github.com/denoland/deno"

[workspace.dependencies]
deno_ast = { version = "0.29.3", features = ["transpiling"] }

deno_ast = { version = "0.30.2", features = ["transpiling"] }
deno_core = { version = "0.222.0" }

deno_runtime = { version = "0.129.0", path = "./runtime" }
Expand Down
14 changes: 7 additions & 7 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,16 @@ deno_ast = { workspace = true, features = ["bundler", "cjs", "codegen", "dep_gra
deno_cache_dir = "=0.6.0"
deno_config = "=0.4.0"
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
deno_doc = "=0.68.0"
deno_emit = "=0.29.0"
deno_graph = "=0.56.3"
deno_lint = { version = "=0.51.0", features = ["docs"] }
deno_doc = "=0.69.1"
deno_emit = "=0.31.0"
deno_graph = "=0.58.0"
deno_lint = { version = "=0.52.1", features = ["docs"] }
deno_lockfile.workspace = true
deno_npm = "0.15.2"
deno_runtime = { workspace = true, features = ["dont_create_runtime_snapshot", "exclude_runtime_main_js", "include_js_files_for_snapshotting"] }
deno_semver = "0.5.1"
deno_task_shell = "=0.13.2"
eszip = "=0.54.0"
eszip = "=0.55.1"
napi_sym.workspace = true

async-trait.workspace = true
Expand All @@ -76,9 +76,9 @@ dashmap = "5.5.3"
data-encoding.workspace = true
data-url.workspace = true
dissimilar = "=1.0.4"
dprint-plugin-json = "=0.17.4"
dprint-plugin-json = "=0.19.0"
dprint-plugin-markdown = "=0.16.2"
dprint-plugin-typescript = "=0.88.1"
dprint-plugin-typescript = "=0.88.2"
encoding_rs.workspace = true
env_logger = "=0.10.0"
fancy-regex = "=0.10.0"
Expand Down
Loading

0 comments on commit 8f065a6

Please sign in to comment.