diff options
author | 2023-10-11 08:34:35 +0900 | |
---|---|---|
committer | 2023-10-10 16:34:35 -0700 | |
commit | 44dd744f0a062012a40eb38326a40f3e3566cb5a (patch) | |
tree | 199a7b5a7bbac499c4b989b3b6eb05b275f5a92a /docs/nav.ts | |
parent | df4ec8aaad25afd59d8730f3fbcbc6b55c6fc2c1 (diff) | |
download | bun-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.ts | 12 |
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.", |