diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-05-08 16:18:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 16:18:00 +0200 |
commit | f9f10229a41d000ae9e96f0907ca321f9ffdeea7 (patch) | |
tree | 57e935dc1199373ac841cfd0359ab1b1541bc55f /cli/lib.rs | |
parent | 6b73e0caff9673965df7a096c360ac336eb1cba0 (diff) |
refactor: Remove cli::compilers module (#5138)
This PR removes "cli/compilers/" directory.
"cli/compilers/ts.rs" has been renamed to "cli/tsc.rs"
Diffstat (limited to 'cli/lib.rs')
-rw-r--r-- | cli/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/lib.rs b/cli/lib.rs index 673340cb9..060c86b55 100644 --- a/cli/lib.rs +++ b/cli/lib.rs @@ -23,7 +23,6 @@ extern crate url; mod checksum; pub mod colors; -pub mod compilers; pub mod deno_dir; pub mod diagnostics; mod disk_cache; @@ -57,6 +56,7 @@ mod swc_util; mod test_runner; pub mod test_util; mod tokio_util; +mod tsc; mod upgrade; pub mod version; mod web_worker; @@ -66,7 +66,6 @@ pub use dprint_plugin_typescript::swc_common; pub use dprint_plugin_typescript::swc_ecma_ast; pub use dprint_plugin_typescript::swc_ecma_parser; -use crate::compilers::TargetLib; use crate::doc::parser::DocFileLoader; use crate::file_fetcher::SourceFile; use crate::file_fetcher::SourceFileFetcher; @@ -76,6 +75,7 @@ use crate::op_error::OpError; use crate::ops::io::get_stdio; use crate::state::DebugType; use crate::state::State; +use crate::tsc::TargetLib; use crate::worker::MainWorker; use deno_core::v8_set_flags; use deno_core::ErrBox; |