mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
Fix entry point for tools/docs.py
This commit is contained in:
parent
22f791c26c
commit
52b7cc5499
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ os.chdir(os.path.join(target_path, "debug/gen/lib/"))
|
|||
# TODO Replace typedoc with something else ASAP. It's very awful.
|
||||
run([
|
||||
"typedoc", "lib.deno_runtime.d.ts", "--out",
|
||||
os.path.join(target_path, "typedoc"), "--entryPoint", "\"deno\"",
|
||||
os.path.join(target_path, "typedoc"), "--entryPoint", "Deno",
|
||||
"--ignoreCompilerErrors", "--includeDeclarations", "--excludeExternals",
|
||||
"--excludePrivate", "--excludeProtected", "--mode", "file", "--name",
|
||||
"deno", "--theme", "minimal", "--readme", "none"
|
||||
|
|
Loading…
Reference in a new issue