diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-01-13 11:58:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-13 11:58:00 -0500 |
commit | f12164646ba8327e9e6275b0ab97602f85e9854f (patch) | |
tree | 1668ac008ac455d38d9eacd70dec4ed7f1d542c2 /cli/main.rs | |
parent | 5e2d7737f5542c02572aa6585c8a6a78c84ae5ab (diff) |
refactor: move transpiling to deno_ast (#13332)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cli/main.rs b/cli/main.rs index d1fda4727..b845a4f49 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -1,6 +1,5 @@ // Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. -mod ast; mod auth_tokens; mod cache; mod checksum; @@ -475,6 +474,7 @@ async fn info_command( maybe_resolver, maybe_locker, None, + None, ) .await; @@ -654,6 +654,7 @@ async fn create_graph_and_maybe_check( maybe_resolver, maybe_locker, None, + None, ) .await, ); @@ -999,6 +1000,7 @@ async fn run_with_watch(flags: Flags, script: String) -> Result<i32, AnyError> { maybe_resolver, maybe_locker, None, + None, ) .await; let check_js = ps |