Skip to content

Commit 4e90ee8

Browse files
add Parcel server-bun and server-deno templates (#1546)
* feat(cli): add Parcel `server-bun` and `server-deno` templates to documentation and data files * chore: add changeset
1 parent 3f30cd4 commit 4e90ee8

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

.changeset/three-lies-glow.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-flowbite-react": patch
3+
---
4+
5+
add Parcel `server-bun` and `server-deno` templates

apps/web/content/docs/getting-started/cli.mdx

+2
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,8 @@ The CLI supports various framework templates. Each template comes with a complet
320320
| `nextjs` | [flowbite-react-template-nextjs](https://github.com/themesberg/flowbite-react-template-nextjs) |
321321
| `parcel` | |
322322
|`client` | [flowbite-react-template-parcel-client](https://github.com/themesberg/flowbite-react-template-parcel-client) |
323+
|`server-bun` | [flowbite-react-template-parcel-server-bun](https://github.com/themesberg/flowbite-react-template-parcel-server-bun) |
324+
|`server-deno` | [flowbite-react-template-parcel-server-deno](https://github.com/themesberg/flowbite-react-template-parcel-server-deno) |
323325
|`server` | [flowbite-react-template-parcel-server](https://github.com/themesberg/flowbite-react-template-parcel-server) |
324326
| `react-router` | |
325327
|`framework` | [flowbite-react-template-react-router-framework](https://github.com/themesberg/flowbite-react-template-react-router-framework) |

packages/cli/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ Check out the full list of [official `flowbite-react` template examples](https:/
5252
| `nextjs` | [flowbite-react-template-nextjs](https://github.com/themesberg/flowbite-react-template-nextjs) |
5353
| `parcel` | |
5454
|`client` | [flowbite-react-template-parcel-client](https://github.com/themesberg/flowbite-react-template-parcel-client) |
55+
|`server-bun` | [flowbite-react-template-parcel-server-bun](https://github.com/themesberg/flowbite-react-template-parcel-server-bun) |
56+
|`server-deno` | [flowbite-react-template-parcel-server-deno](https://github.com/themesberg/flowbite-react-template-parcel-server-deno) |
5557
|`server` | [flowbite-react-template-parcel-server](https://github.com/themesberg/flowbite-react-template-parcel-server) |
5658
| `react-router` | |
5759
|`framework` | [flowbite-react-template-react-router-framework](https://github.com/themesberg/flowbite-react-template-react-router-framework) |

packages/cli/src/data.ts

+12
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,18 @@ export const REPOS: Template[] = [
8181
description: "React Server Components setup",
8282
url: "https://github.com/themesberg/flowbite-react-template-parcel-server.git",
8383
},
84+
{
85+
key: "server-bun",
86+
name: "Server Mode (Bun)",
87+
description: "React Server Components setup with Bun",
88+
url: "https://github.com/themesberg/flowbite-react-template-parcel-server-bun.git",
89+
},
90+
{
91+
key: "server-deno",
92+
name: "Server Mode (Deno)",
93+
description: "React Server Components setup with Deno",
94+
url: "https://github.com/themesberg/flowbite-react-template-parcel-server-deno.git",
95+
},
8496
],
8597
},
8698
{

0 commit comments

Comments
 (0)