diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-09-25 08:31:17 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-25 08:31:17 +1000 |
commit | c489589e2b220317609689fbb1d0aec06191c7e9 (patch) | |
tree | 43d083abad7e900ebd2c7fd84160305aa6ebc5ed /cli/main.rs | |
parent | 7726cfb93243932a07107f67b87032adb40abdc0 (diff) |
refactor: new module graph used for no check (#7621)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/main.rs b/cli/main.rs index 5d4d31a3d..903dceaba 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -25,6 +25,7 @@ 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; @@ -44,6 +45,7 @@ mod repl; pub mod resolve_addr; pub mod signal; pub mod source_maps; +mod specifier_handler; pub mod state; mod test_runner; mod text_encoding; |