From 87eedc29d5cb9580205ce5448d2c863fcc733bc7 Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Mon, 15 Jan 2024 18:13:11 -0800 Subject: [PATCH] Move the standalone executable page --- docs/nav.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/nav.ts b/docs/nav.ts index 416c5fd09b..6bf25b26e9 100644 --- a/docs/nav.ts +++ b/docs/nav.ts @@ -116,6 +116,9 @@ export default { page("runtime/nodejs-apis", "Node.js compatibility", { description: `Bun aims for full Node.js compatibility. This page tracks the current compatibility status.`, }), + page("bundler/executables", "Single-file executable", { + description: "Compile a TypeScript or JavaScript file to a standalone executable", + }), page("runtime/plugins", "Plugins", { description: `Implement custom loaders and module resolution logic with Bun's plugin system.`, }), @@ -204,9 +207,6 @@ export default { page("bundler/plugins", "Plugins", { description: `Implement custom loaders and module resolution logic with Bun's plugin system.`, }), - page("bundler/executables", "Executables", { - description: "Compile a TypeScript or JavaScript file to a standalone executable", - }), page("bundler/macros", "Macros", { description: `Run JavaScript functions at bundle-time and inline the results into your bundle`, }),