aboutsummaryrefslogtreecommitdiff
path: root/docs/nav.ts
diff options
context:
space:
mode:
authorGravatar cyfung1031 <44498510+cyfung1031@users.noreply.github.com> 2023-10-11 08:34:35 +0900
committerGravatar GitHub <noreply@github.com> 2023-10-10 16:34:35 -0700
commit44dd744f0a062012a40eb38326a40f3e3566cb5a (patch)
tree199a7b5a7bbac499c4b989b3b6eb05b275f5a92a /docs/nav.ts
parentdf4ec8aaad25afd59d8730f3fbcbc6b55c6fc2c1 (diff)
downloadbun-44dd744f0a062012a40eb38326a40f3e3566cb5a.tar.gz
bun-44dd744f0a062012a40eb38326a40f3e3566cb5a.tar.zst
bun-44dd744f0a062012a40eb38326a40f3e3566cb5a.zip
docs: rearranged cli/runtime related sections (#6275)
* docs: rearranged cli/runtime related sections * docs: update README.md for the updated docs path * Updates * Rearrange * Rearrange * Add files * readme --------- Co-authored-by: Colin McDonnell <colinmcd94@gmail.com>
Diffstat (limited to 'docs/nav.ts')
-rw-r--r--docs/nav.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/nav.ts b/docs/nav.ts
index 2f9d74024..648aebfc0 100644
--- a/docs/nav.ts
+++ b/docs/nav.ts
@@ -38,12 +38,13 @@ export default {
page("typescript", "TypeScript", {
description: "Install and configure type declarations for Bun's APIs",
}),
- page("templates", "Templates", {
- description: "Hit the ground running with one of Bun's official templates, or download a template from GitHub.",
+
+ divider("Scaffolding"),
+ page("cli/init", "`bun init`", {
+ description: "Scaffold an empty Bun project.",
}),
- page("guides", "Guides", {
- description: "A set of walkthrough guides and code snippets for performing common tasks with Bun",
- href: "/guides",
+ page("cli/bun-create", "`bun create`", {
+ description: "Scaffold a new Bun project from an official template or GitHub repo.",
}),
// page("typescript", "TypeScript"),
@@ -81,7 +82,6 @@ export default {
// page("bundev", "Dev server"),
// page("benchmarks", "Benchmarks"),
- // divider("Runtime"),
divider("Runtime"),
page("cli/run", "`bun run`", {
description: "Use `bun run` to execute JavaScript/TypeScript files and package.json scripts.",