summaryrefslogtreecommitdiff
path: root/cli/Cargo.toml
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-07-31 16:59:22 +0200
committerGitHub <noreply@github.com>2020-07-31 16:59:22 +0200
commitb718e6ff53156a0aae486e570ce7c9cb8a3b822a (patch)
tree6930f093a20466f4333e24eda2cd059807a36314 /cli/Cargo.toml
parent4afb4b6e46de2ed536a3c9828d70d7799b5b6d03 (diff)
upgrade: deno_lint, dprint, swc (#6928)
This commit upgrades: deno_lint 0.1.20 dprint-plugin-typescript 0.25.0 swc_ecmascript 0.1.0 SWC is no longer reexported from dprint nor deno_lint.
Diffstat (limited to 'cli/Cargo.toml')
-rw-r--r--cli/Cargo.toml7
1 files changed, 4 insertions, 3 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 076a4e6b0..f282e79f3 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -23,7 +23,7 @@ winapi = "0.3.8"
[dependencies]
deno_core = { path = "../core", version = "0.50.0" }
-deno_lint = "0.1.19"
+deno_lint = "0.1.20"
atty = "0.2.14"
base64 = "0.12.2"
@@ -32,6 +32,7 @@ byteorder = "1.3.4"
clap = "2.33.1"
dissimilar = "1.0.2"
dlopen = "0.1.8"
+dprint-plugin-typescript = "0.25.0"
futures = "0.3.5"
http = "0.2.1"
idna = "0.2.0"
@@ -50,8 +51,8 @@ serde_derive = "1.0.112"
serde_json = { version = "1.0.55", features = [ "preserve_order" ] }
sys-info = "0.7.0"
sourcemap = "6.0.0"
-swc_ecma_transforms = "=0.16.0"
-swc_ecma_codegen = "=0.29.1"
+swc_common = { version = "=0.8.0", features = ["sourcemap"] }
+swc_ecmascript = { version = "=0.1.0", features = ["codegen", "parser", "transforms", "visit"] }
tempfile = "3.1.0"
termcolor = "1.1.0"
tokio = { version = "0.2.22", features = ["full"] }