diff options
author | Luca Casonato <hello@lcas.dev> | 2024-01-23 16:37:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-23 16:37:43 +0100 |
commit | 137f1a0c6836b50292c53e15aa85bd56ad14a943 (patch) | |
tree | c0bf018dbacee30ca80817ffc82751b6f9870fa0 /cli/main.rs | |
parent | 427b73c3ec1e01ca8c670d403a85fcf31777d253 (diff) |
feat(cli): improved diagnostics printing (#22049)
This initially uses the new diagnostic printer in `deno lint`,
`deno doc` and `deno publish`. In the limit we should also update
`deno check` to use this printer.
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/main.rs b/cli/main.rs index ae89d4c94..3f49677d8 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -5,6 +5,7 @@ mod auth_tokens; mod cache; mod cdp; mod deno_std; +mod diagnostics; mod emit; mod errors; mod factory; |