From 9ad2f5785eb9574a37e37f51ff296cc99ec8aad7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ullrich=20Sch=C3=A4fer?= Date: Sun, 22 Mar 2026 12:41:13 +0100 Subject: [PATCH] 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) --- CLAUDE.md | 8 ++++---- README.md | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index e625f62..9c656b1 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -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) diff --git a/README.md b/README.md index b846560..669e65c 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ cd trails pnpm install # Start development -turbo dev +pnpm dev ``` ## Development Tools