1
0
Fork 0
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:
Ryan Dahl 2019-03-17 14:32:21 -04:00
parent 22f791c26c
commit 52b7cc5499

View file

@ -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"