Skip to content

Commit 5cf98ef

Browse files
committed
docs(react): update explorer README to use npx vite instead of npm install/run
1 parent 305336f commit 5cf98ef

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

renderers/react/a2ui_explorer/README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,33 +26,30 @@ _Note: Ensure `@a2ui/web_core` is also built if you have made changes to the cor
2626

2727
## Setup and Development
2828

29-
Once the dependencies are built, you can start the gallery app:
29+
Once the dependencies are built, you can start the gallery app directly without installing dependencies:
3030

3131
```bash
3232
# Navigate to this directory
3333
cd renderers/react/a2ui_explorer
3434

35-
# Install dependencies
36-
npm install
37-
3835
# Start the development server
39-
npm run dev
36+
npx vite
4037
```
4138

4239
## Building for Production
4340

4441
To create a production build of the gallery app:
4542

4643
```bash
47-
npm run build
44+
npx vite build
4845
```
4946

5047
## Running Tests
5148

5249
To run the integration tests:
5350

5451
```bash
55-
npm test
52+
npx vitest
5653
```
5754

5855
## Gallery Features

0 commit comments

Comments
 (0)