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/state.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/state.rs')
-rw-r--r-- | cli/state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/state.rs b/cli/state.rs index 9fd719646..8c425d700 100644 --- a/cli/state.rs +++ b/cli/state.rs @@ -1,5 +1,4 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -use crate::compilers::TargetLib; use crate::file_fetcher::SourceFileFetcher; use crate::global_state::GlobalState; use crate::global_timer::GlobalTimer; @@ -9,6 +8,7 @@ use crate::op_error::OpError; use crate::ops::JsonOp; use crate::ops::MinimalOp; use crate::permissions::Permissions; +use crate::tsc::TargetLib; use crate::web_worker::WebWorkerHandle; use deno_core::Buf; use deno_core::ErrBox; |