Use pnpm instead of bare turbo in dev commands

turbo is a local devDependency, not globally installed. Using pnpm
as the entry point resolves the local binary correctly.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ullrich Schäfer 2026-03-22 12:41:13 +01:00
parent f2f0bd31ae
commit 9ad2f5785e
No known key found for this signature in database
GPG key ID: A32FF691A0F752D9
2 changed files with 5 additions and 5 deletions

View file

@ -54,10 +54,10 @@ docker/brouter/ — BRouter Docker image
```bash
pnpm install # Install dependencies
turbo dev # Start both apps in dev mode
turbo build # Build all packages and apps
turbo typecheck # Type-check all packages
turbo lint # Lint all packages
pnpm dev # Start both apps in dev mode
pnpm build # Build all packages and apps
pnpm typecheck # Type-check all packages
pnpm lint # Lint all packages
pnpm test # Run unit tests (vitest)
pnpm test:watch # Run unit tests in watch mode
pnpm test:e2e # Run E2E tests (playwright, requires dev servers)

View file

@ -46,7 +46,7 @@ cd trails
pnpm install
# Start development
turbo dev
pnpm dev
```
## Development Tools