create-solidrt 0.0.51 → 0.0.53
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.
- package/README.md +6 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,9 +5,13 @@ Scaffold a new [SolidRT](https://github.com/antoinevanwel/solidrt) project:
|
|
|
5
5
|
```sh
|
|
6
6
|
bun create solidrt my-app
|
|
7
7
|
cd my-app
|
|
8
|
-
|
|
8
|
+
bun run dev
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
This forwards to `srt init` from `@solidrt/cli`, which writes a starter project
|
|
12
12
|
(package.json, tsconfig.json, AGENTS.md, src/index.tsx) into a new, empty folder
|
|
13
|
-
and installs the dependencies.
|
|
13
|
+
and installs the dependencies.
|
|
14
|
+
|
|
15
|
+
Bun is only used for development: it runs the scaffolder, the `srt` CLI and the
|
|
16
|
+
dev server. A SolidRT app itself runs on the SolidRT runtime, which embeds its
|
|
17
|
+
own JavaScript engine, so Bun is not needed to run or ship the app.
|