diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-03-22 11:34:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-22 11:34:47 -0400 |
commit | 12753e492f924e32be2a74d94720213f1d5c6b66 (patch) | |
tree | 9939f93b371e8bc29de70ebb1e34bcb7e124e5c9 /tools/docs.py | |
parent | 1499d57490f2d928e57b21c992e559fc403cad42 (diff) |
Website updates (#1984)
Diffstat (limited to 'tools/docs.py')
-rwxr-xr-x | tools/docs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/docs.py b/tools/docs.py index 147b76fcc..c35c68cd7 100755 --- a/tools/docs.py +++ b/tools/docs.py @@ -9,7 +9,7 @@ target_path = os.path.join(root_path, "target/") os.chdir(root_path) # Builds into target/doc -run(["cargo", "doc", "--no-deps", "-vv"]) +run(["cargo", "doc", "--all", "--no-deps", "-vv"]) # 'deno --types' is stored in target/debug/gen/lib/lib.deno_runtime.d.ts # We want to run typedoc on that declaration file only. |