From 5cf98efbf54de45278077f0d84c1472dcc44d0ca Mon Sep 17 00:00:00 2001 From: Ashika Anand Babu Date: Thu, 28 May 2026 16:26:45 -0700 Subject: [PATCH] docs(react): update explorer README to use npx vite instead of npm install/run --- renderers/react/a2ui_explorer/README.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/renderers/react/a2ui_explorer/README.md b/renderers/react/a2ui_explorer/README.md index 489f7d4797..0aa342f14f 100644 --- a/renderers/react/a2ui_explorer/README.md +++ b/renderers/react/a2ui_explorer/README.md @@ -26,17 +26,14 @@ _Note: Ensure `@a2ui/web_core` is also built if you have made changes to the cor ## Setup and Development -Once the dependencies are built, you can start the gallery app: +Once the dependencies are built, you can start the gallery app directly without installing dependencies: ```bash # Navigate to this directory cd renderers/react/a2ui_explorer -# Install dependencies -npm install - # Start the development server -npm run dev +npx vite ``` ## Building for Production @@ -44,7 +41,7 @@ npm run dev To create a production build of the gallery app: ```bash -npm run build +npx vite build ``` ## Running Tests @@ -52,7 +49,7 @@ npm run build To run the integration tests: ```bash -npm test +npx vitest ``` ## Gallery Features