From cdae4423c27443e0085d59f45eda1c978f186a1c Mon Sep 17 00:00:00 2001 From: Liam Murphy <43807659+Liamolucko@users.noreply.github.com> Date: Fri, 26 Feb 2021 02:24:05 +1100 Subject: feat(cli/doc): use type definitions "deno doc" if available (#8459) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit adds support for type definitions in "deno doc"; with this change "deno doc" is able to leverage the same directives as TS compiler. Co-authored-by: Bartek IwaƄczuk --- cli/tools/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'cli/tools/mod.rs') diff --git a/cli/tools/mod.rs b/cli/tools/mod.rs index 089232b99..cd00f6a86 100644 --- a/cli/tools/mod.rs +++ b/cli/tools/mod.rs @@ -1,6 +1,7 @@ // Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. pub mod coverage; +pub mod doc; pub mod fmt; pub mod installer; pub mod lint; -- cgit v1.2.3