1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-18 03:44:05 -05:00

Fix tools/docs.py (#3135)

This commit is contained in:
Ryan Dahl 2019-10-16 14:31:37 -04:00 committed by Bert Belder
parent c1b302d769
commit 99d8ac70db

View file

@ -13,7 +13,7 @@ run(["cargo", "doc", "--all", "--no-deps", "-vv"])
# 'deno types' is stored in js/lib.deno_runtime.d.ts
# We want to run typedoc on that declaration file only.
os.chdir(os.path.join(root_path, "js"))
os.chdir(os.path.join(root_path, "cli/js"))
# You must have typedoc installed seprately.
# TODO Replace typedoc with something else ASAP. It's very awful.