diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-11-25 19:04:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-26 00:04:30 +0000 |
commit | 0c0af67f89b610eb61e4f66a5dbf665474aa9383 (patch) | |
tree | b2da2181d6ce10395da176ca8ac352345fc65fca /cli/cache/mod.rs | |
parent | e0dd275935c49f5b5b844123d621c5dea1761983 (diff) |
refactor: `DenoDir` - move to cache folder and make `root_dir` private (#16823)
Diffstat (limited to 'cli/cache/mod.rs')
-rw-r--r-- | cli/cache/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/cache/mod.rs b/cli/cache/mod.rs index 16390013a..cf9a4c441 100644 --- a/cli/cache/mod.rs +++ b/cli/cache/mod.rs @@ -16,6 +16,7 @@ use std::sync::Arc; mod check; mod common; +mod deno_dir; mod disk_cache; mod emit; mod incremental; @@ -24,6 +25,7 @@ mod parsed_source; pub use check::TypeCheckCache; pub use common::FastInsecureHasher; +pub use deno_dir::DenoDir; pub use disk_cache::DiskCache; pub use emit::EmitCache; pub use incremental::IncrementalCache; |