diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 9 | ||||
-rw-r--r-- | cli/tsc.rs | 2 |
2 files changed, 5 insertions, 6 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 063f53753..5acd96c0c 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -29,8 +29,8 @@ winapi = "0.3.9" [dependencies] deno_core = { path = "../core", version = "0.56.0" } -deno_doc = { version = "0.1.5" } -deno_lint = { version = "0.1.28", features = ["json"] } +deno_doc = { version = "0.1.6" } +deno_lint = { version = "0.1.29", features = ["json"] } atty = "0.2.14" base64 = "0.12.3" @@ -40,7 +40,7 @@ clap = "2.33.2" dissimilar = "1.0.2" dlopen = "0.1.8" encoding_rs = "0.8.23" -dprint-plugin-typescript = "0.31.0" +dprint-plugin-typescript = "0.31.1" futures = "0.3.5" filetime = "0.2.12" http = "0.2.1" @@ -63,8 +63,7 @@ serde_json = { version = "1.0.57", features = [ "preserve_order" ] } sys-info = "0.7.0" sourcemap = "6.0.1" swc_common = { version = "=0.10.2", features = ["sourcemap"] } -swc_ecmascript = { version = "=0.7.0", features = ["codegen", "parser", "react", "transforms", "visit"] } -swc_ecma_dep_graph = "0.3.0" +swc_ecmascript = { version = "=0.7.3", features = ["codegen", "dep_graph", "parser", "react", "transforms", "visit"] } tempfile = "3.1.0" termcolor = "1.1.0" tokio = { version = "0.2.22", features = ["full"] } diff --git a/cli/tsc.rs b/cli/tsc.rs index 90a1a31b5..36a7cf054 100644 --- a/cli/tsc.rs +++ b/cli/tsc.rs @@ -57,7 +57,7 @@ use std::sync::Mutex; use std::task::Poll; use swc_common::comments::Comment; use swc_common::comments::CommentKind; -use swc_ecma_dep_graph as dep_graph; +use swc_ecmascript::dep_graph; use url::Url; pub const AVAILABLE_LIBS: &[&str] = &[ |