story-kit: merge 243_bug_replace_pnpm_with_npm

This commit is contained in:
Dave
2026-03-14 18:09:58 +00:00
parent 3a430dfaa2
commit 3abea68f9e
12 changed files with 72 additions and 6658 deletions

View File

@@ -10,8 +10,8 @@ You can also run the frontend and backend separately in development (Vite dev se
```bash
# Build the frontend
cd frontend
pnpm install
pnpm dev
npm install
npm run dev
# Run the server (serves embedded frontend/dist/)
cargo run
@@ -35,7 +35,7 @@ Story Kit ships as a **single self-contained binary** with the React frontend em
### macOS
```bash
# Native build no extra tools required beyond Rust + pnpm
# Native build no extra tools required beyond Rust + npm
make build-macos
# Output: target/release/story-kit
@@ -109,10 +109,10 @@ The frontend uses **Vitest** for unit tests and **Playwright** for end-to-end te
cd frontend
# Run unit tests
pnpm test
npm test
# Run end-to-end tests
pnpm test:e2e
npm run test:e2e
```
### Backend Tests