diff options
author | 2023-09-08 10:54:19 -0700 | |
---|---|---|
committer | 2023-09-08 10:55:16 -0700 | |
commit | 9e3cabc540149eae31cffff104a3642792a2ae79 (patch) | |
tree | b5e9717ee07b0bf134e86a1f055ccff4d4593d68 | |
parent | 3170cf08ba7d9e240695cceec9e0848f3b9a2754 (diff) | |
download | bun-9e3cabc540149eae31cffff104a3642792a2ae79.tar.gz bun-9e3cabc540149eae31cffff104a3642792a2ae79.tar.zst bun-9e3cabc540149eae31cffff104a3642792a2ae79.zip |
Remove community-templates
-rw-r--r-- | docs/cli/create.md | 4 | ||||
-rw-r--r-- | docs/templates.md | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/cli/create.md b/docs/cli/create.md index 393378eed..d59912f2b 100644 --- a/docs/cli/create.md +++ b/docs/cli/create.md @@ -50,7 +50,7 @@ Running `bun create` performs the following steps: - Initialize a fresh Git repo. Opt out with the `--no-git` flag. - Run the template's configured `start` script, if defined. -## Official templates +<!-- ## Official templates The following official templates are available. @@ -73,7 +73,7 @@ Welcome to bun! Create a new project by pasting any of the following: {% callout %} ⚡️ **Speed** — At the time of writing, `bun create react app` runs ~11x faster on a M1 Macbook Pro than `yarn create react-app app`. -{% /callout %} +{% /callout %} --> ## GitHub repos diff --git a/docs/templates.md b/docs/templates.md index 52e25fba6..d60ea692c 100644 --- a/docs/templates.md +++ b/docs/templates.md @@ -33,7 +33,7 @@ Template a new Bun project with `bun create`. This is a flexible command that ca ### From `npm` ```sh -$ bun create template [<destination>] +$ bun create <template> [<destination>] ``` Assuming you don't have a [local template](#local-templates) with the same name, this command will download and execute the `create-<template>` package from npm. The following two commands will behave identically: |