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:
parent
f2f0bd31ae
commit
9ad2f5785e
2 changed files with 5 additions and 5 deletions
|
|
@ -54,10 +54,10 @@ docker/brouter/ — BRouter Docker image
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pnpm install # Install dependencies
|
pnpm install # Install dependencies
|
||||||
turbo dev # Start both apps in dev mode
|
pnpm dev # Start both apps in dev mode
|
||||||
turbo build # Build all packages and apps
|
pnpm build # Build all packages and apps
|
||||||
turbo typecheck # Type-check all packages
|
pnpm typecheck # Type-check all packages
|
||||||
turbo lint # Lint all packages
|
pnpm lint # Lint all packages
|
||||||
pnpm test # Run unit tests (vitest)
|
pnpm test # Run unit tests (vitest)
|
||||||
pnpm test:watch # Run unit tests in watch mode
|
pnpm test:watch # Run unit tests in watch mode
|
||||||
pnpm test:e2e # Run E2E tests (playwright, requires dev servers)
|
pnpm test:e2e # Run E2E tests (playwright, requires dev servers)
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ cd trails
|
||||||
pnpm install
|
pnpm install
|
||||||
|
|
||||||
# Start development
|
# Start development
|
||||||
turbo dev
|
pnpm dev
|
||||||
```
|
```
|
||||||
|
|
||||||
## Development Tools
|
## Development Tools
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue