From 57957b89a4d32946c4d97a7a2cf53a6cad753f10 Mon Sep 17 00:00:00 2001 From: Benjamin Toby Date: Sun, 5 Apr 2026 18:13:52 +0100 Subject: [PATCH] Update README.md --- README.md | 18 ++++++++++++------ package.json | 2 +- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b4cba90..a6f686f 100644 --- a/README.md +++ b/README.md @@ -61,8 +61,8 @@ The goal is a framework that is: - [Bun](https://bun.sh) v1.0 or later - TypeScript 5.0+ - -> **React is managed by Bunext.** You do not need to install `react` or `react-dom` — Bunext enforces its own pinned React version and removes any user-installed copies at startup to prevent version conflicts. Installing this package is all you need. +- react 18.0+ +- react-dom 18.0+ --- @@ -103,6 +103,12 @@ bun add -g @moduletrace/bunext bun add github:moduletrace/bunext ``` +### Install react and react-dom + +```bash +bun add react react-dom +``` + --- ## Quick Start @@ -150,11 +156,11 @@ bun run dev ## CLI Commands -| Command | Description | -| -------------- | ---------------------------------------------------------------------- | -| `bunext dev` | Start the development server with HMR and file watching. | +| Command | Description | +| -------------- | ------------------------------------------------------------------------------ | +| `bunext dev` | Start the development server with HMR and file watching. | | `bunext build` | Bundle all pages for production. Outputs artifacts to `.bunext/public/pages/`. | -| `bunext start` | Start the production server using pre-built artifacts. | +| `bunext start` | Start the production server using pre-built artifacts. | ### Running the CLI diff --git a/package.json b/package.json index 983d4f8..a778073 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@moduletrace/bunext", "module": "index.ts", "type": "module", - "version": "1.0.53", + "version": "1.0.54", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": {