mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 10:59:13 +00:00
Rename ansi.rs to colors.rs (#2956)
This commit is contained in:
parent
4556a38ed9
commit
a93b29007f
7 changed files with 31 additions and 31 deletions
|
@ -1,6 +1,6 @@
|
|||
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||
use super::dispatch_json::{Deserialize, JsonOp, Value};
|
||||
use crate::ansi;
|
||||
use crate::colors;
|
||||
use crate::fs as deno_fs;
|
||||
use crate::state::ThreadSafeState;
|
||||
use crate::version;
|
||||
|
@ -39,7 +39,7 @@ pub fn op_start(
|
|||
"v8Version": version::v8(),
|
||||
"denoVersion": version::DENO,
|
||||
"tsVersion": version::typescript(),
|
||||
"noColor": !ansi::use_color(),
|
||||
"noColor": !colors::use_color(),
|
||||
"xevalDelim": state.flags.xeval_delim.clone(),
|
||||
"os": BUILD_OS,
|
||||
"arch": BUILD_ARCH,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue