diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-10-07 16:24:15 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-07 16:24:15 +1100 |
commit | 7ab645f512057d74fda2d0edf2d336cea3ed524e (patch) | |
tree | 7c208585997475cc6fa808d17d3c2b58c065c4cd /cli/main.rs | |
parent | ece400d13fdb38d7acaa57a17354538bd5d6a44c (diff) |
refactor(cli): cleanups to new module graph (#7846)
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 8672a5681..bd39d80bc 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -25,7 +25,6 @@ pub mod fmt_errors; mod fs; pub mod global_state; mod global_timer; -mod graph; pub mod http_cache; mod http_util; mod import_map; @@ -38,6 +37,7 @@ mod lockfile; mod media_type; mod metrics; mod module_graph; +mod module_graph2; mod op_fetch_asset; pub mod ops; pub mod permissions; |