diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-02-07 11:25:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-07 11:25:14 -0500 |
commit | 83d72e5c1c0b983f4b63f3f64f9a1de7600985f4 (patch) | |
tree | 49dfd980df2fce512fa13c3650d1c45a3e500a51 /cli/main.rs | |
parent | a32e7f0eb23fa17f5af2fc4c8abfd79762934244 (diff) |
refactor: extract out `runtime::colors` to `deno_terminal::colors` (#22324)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/main.rs b/cli/main.rs index 3f49677d8..9d0ade085 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -42,9 +42,9 @@ use deno_core::error::JsError; use deno_core::futures::FutureExt; use deno_core::unsync::JoinHandle; use deno_npm::resolution::SnapshotFromLockfileError; -use deno_runtime::colors; use deno_runtime::fmt_errors::format_js_error; use deno_runtime::tokio_util::create_and_run_current_thread_with_maybe_metrics; +use deno_terminal::colors; use factory::CliFactory; use std::env; use std::env::current_exe; |