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 | |
parent | 1499d57490f2d928e57b21c992e559fc403cad42 (diff) |
Website updates (#1984)
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | tools/docs.py | 2 | ||||
-rw-r--r-- | website/index.html | 4 | ||||
-rw-r--r-- | website/style.css | 2 |
4 files changed, 6 insertions, 4 deletions
@@ -1,6 +1,6 @@ # deno -A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio +A secure runtime for JavaScript and TypeScript built with V8, Rust, and Tokio. | **Linux & Mac** | **Windows** | | :------------------------: | :------------------------: | 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. diff --git a/website/index.html b/website/index.html index 9f6e4b4bf..f1cbde49f 100644 --- a/website/index.html +++ b/website/index.html @@ -17,7 +17,7 @@ <img id="logo" src="images/deno_logo_3.svg" width=200> <div> <h1>Deno</h1> - A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio + A secure runtime for JavaScript and TypeScript built with V8, Rust, and Tokio </div> </header> @@ -131,6 +131,8 @@ main();</code></pre> <p><a href="https://deno.land/x/">Module repository</a></p> + <p><a href="https://twitter.com/deno_land">Twitter Account</a></p> + <p> <a href="https://github.com/denoland/deno/blob/master/Releases.md" >Release notes</a diff --git a/website/style.css b/website/style.css index b00997e2c..824814a32 100644 --- a/website/style.css +++ b/website/style.css @@ -78,7 +78,7 @@ header { } header > * { - margin: 16px; + margin: 8px; } header h1 { |