diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 4 | ||||
-rw-r--r-- | cli/tests/testdata/doc/referenced_private_types_lint.out | 4 | ||||
-rw-r--r-- | cli/tests/testdata/doc/use_import_map.out | 2 |
3 files changed, 4 insertions, 6 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 9cc95c806..03ae55420 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -49,9 +49,9 @@ deno_ast = { workspace = true, features = ["bundler", "cjs", "codegen", "dep_gra deno_cache_dir = "=0.6.1" deno_config = "=0.4.0" deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] } -deno_doc = "=0.71.0" +deno_doc = { version = "=0.72.1", features = ["html"] } deno_emit = "=0.31.1" -deno_graph = "=0.59.1" +deno_graph = "=0.59.2" deno_lint = { version = "=0.52.2", features = ["docs"] } deno_lockfile.workspace = true deno_npm = "0.15.2" diff --git a/cli/tests/testdata/doc/referenced_private_types_lint.out b/cli/tests/testdata/doc/referenced_private_types_lint.out index bb8c599f4..3b1273e22 100644 --- a/cli/tests/testdata/doc/referenced_private_types_lint.out +++ b/cli/tests/testdata/doc/referenced_private_types_lint.out @@ -1,6 +1,4 @@ -Type is not exported, but referenced by an exported type. - at file:///[WILDCARD]/referenced_private_types.ts:1:1 - +Type 'MyClass' references type 'MyInterface' which is not exported from a root module. Missing JS documentation comment. at file:///[WILDCARD]/referenced_private_types.ts:5:1 diff --git a/cli/tests/testdata/doc/use_import_map.out b/cli/tests/testdata/doc/use_import_map.out index c27a313f4..9509d5bfe 100644 --- a/cli/tests/testdata/doc/use_import_map.out +++ b/cli/tests/testdata/doc/use_import_map.out @@ -1,5 +1,5 @@ Defined in [WILDCARD]/doc/module/fun.js:2:1 -function fun(_a, _b) +function fun(_a, _b): void This is some documentation |