2018-11-14 09:38:42 -05:00
|
|
|
#!/usr/bin/env python
|
2020-01-02 15:13:47 -05:00
|
|
|
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2018-11-14 09:38:42 -05:00
|
|
|
import os
|
|
|
|
import tempfile
|
|
|
|
from util import run, root_path
|
|
|
|
|
|
|
|
target_path = os.path.join(root_path, "target/")
|
|
|
|
|
2019-09-10 14:34:54 -04:00
|
|
|
# 'deno types' is stored in js/lib.deno_runtime.d.ts
|
2018-11-14 09:38:42 -05:00
|
|
|
# We want to run typedoc on that declaration file only.
|
2019-10-16 14:31:37 -04:00
|
|
|
os.chdir(os.path.join(root_path, "cli/js"))
|
2018-11-14 09:38:42 -05:00
|
|
|
|
|
|
|
# You must have typedoc installed seprately.
|
|
|
|
# TODO Replace typedoc with something else ASAP. It's very awful.
|
|
|
|
run([
|
2020-03-02 10:22:12 -05:00
|
|
|
"typedoc", "lib.deno.ns.d.ts", "--out",
|
2019-03-17 14:32:21 -04:00
|
|
|
os.path.join(target_path, "typedoc"), "--entryPoint", "Deno",
|
2018-11-14 09:38:42 -05:00
|
|
|
"--ignoreCompilerErrors", "--includeDeclarations", "--excludeExternals",
|
|
|
|
"--excludePrivate", "--excludeProtected", "--mode", "file", "--name",
|
|
|
|
"deno", "--theme", "minimal", "--readme", "none"
|
|
|
|
])
|