bun-types 1.1.42-canary.20241229T140500 → 1.1.42-canary.20241231T140524
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -15,6 +15,14 @@ $ bun create next-app
|
|
|
15
15
|
Creating a new Next.js app in /path/to/my-app.
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
+
You can specify a starter template using the `--example` flag.
|
|
19
|
+
|
|
20
|
+
```sh
|
|
21
|
+
$ bun create next-app --example with-supabase
|
|
22
|
+
✔ What is your project named? … my-app
|
|
23
|
+
...
|
|
24
|
+
```
|
|
25
|
+
|
|
18
26
|
---
|
|
19
27
|
|
|
20
28
|
To start the dev server with Bun, run `bun --bun run dev` from the project root.
|
package/package.json
CHANGED