create-solidrt 0.0.51 → 0.0.52

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.
Files changed (2) hide show
  1. package/README.md +6 -2
  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
- bunx srt run src/index.tsx
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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-solidrt",
3
- "version": "0.0.51",
3
+ "version": "0.0.52",
4
4
  "license": "MIT",
5
5
  "funding": "https://github.com/sponsors/wellawaretech",
6
6
  "author": "Antoine van Wel",