summaryrefslogtreecommitdiff
path: root/cli/Cargo.toml
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-01-13 11:58:00 -0500
committerGitHub <noreply@github.com>2022-01-13 11:58:00 -0500
commitf12164646ba8327e9e6275b0ab97602f85e9854f (patch)
tree1668ac008ac455d38d9eacd70dec4ed7f1d542c2 /cli/Cargo.toml
parent5e2d7737f5542c02572aa6585c8a6a78c84ae5ab (diff)
refactor: move transpiling to deno_ast (#13332)
Diffstat (limited to 'cli/Cargo.toml')
-rw-r--r--cli/Cargo.toml10
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 66fa281ee..10db61bf7 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -40,11 +40,11 @@ winapi = "=0.3.9"
winres = "=0.1.11"
[dependencies]
-deno_ast = { version = "0.8.0", features = ["bundler", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "typescript", "view", "visit"] }
+deno_ast = { version = "0.9.0", features = ["bundler", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "transpiling", "typescript", "view", "visit"] }
deno_core = { version = "0.113.0", path = "../core" }
-deno_doc = "0.25.0"
-deno_graph = "0.17.0"
-deno_lint = { version = "0.21.0", features = ["docs"] }
+deno_doc = "0.26.0"
+deno_graph = "0.18.0"
+deno_lint = { version = "0.22.0", features = ["docs"] }
deno_runtime = { version = "0.39.0", path = "../runtime" }
atty = "=0.2.14"
@@ -56,7 +56,7 @@ data-url = "=0.1.1"
dissimilar = "=1.0.2"
dprint-plugin-json = "=0.14.0"
dprint-plugin-markdown = "=0.12.0"
-dprint-plugin-typescript = "=0.61.0"
+dprint-plugin-typescript = "=0.62.0"
encoding_rs = "=0.8.29"
env_logger = "=0.8.4"
fancy-regex = "=0.7.1"