summaryrefslogtreecommitdiff
path: root/cli/tools/info.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tools/info.rs')
-rw-r--r--cli/tools/info.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/tools/info.rs b/cli/tools/info.rs
index a417a6017..8363df9f7 100644
--- a/cli/tools/info.rs
+++ b/cli/tools/info.rs
@@ -126,6 +126,7 @@ fn print_cache_info(
let registry_cache = dir.registries_folder_path();
let mut origin_dir = dir.origin_data_folder_path();
let deno_dir = dir.root_path_for_display().to_string();
+ let web_cache_dir = crate::worker::get_cache_storage_dir();
if let Some(location) = &location {
origin_dir =
@@ -143,6 +144,7 @@ fn print_cache_info(
"typescriptCache": typescript_cache,
"registryCache": registry_cache,
"originStorage": origin_dir,
+ "webCacheStorage": web_cache_dir,
});
if location.is_some() {
@@ -177,6 +179,11 @@ fn print_cache_info(
colors::bold("Origin storage:"),
origin_dir.display()
);
+ println!(
+ "{} {}",
+ colors::bold("Web Cache storage:"),
+ web_cache_dir.display()
+ );
if location.is_some() {
println!(
"{} {}",