auto-claude: subtask-1-3 - Fix package manager commands (npm → pnpm)

This commit is contained in:
2026-01-25 06:32:25 +01:00
parent 742fd3ea2a
commit b04ea04ee5
+5 -5
View File
@@ -89,19 +89,19 @@ src/
```bash
# Install dependencies
npm install
pnpm install
# Start dev server
npm run dev
pnpm run dev
# Build for production
npm run build
pnpm run build
# Run tests
npm test
pnpm test
# Preview production build
npm run preview
pnpm run preview
```
## Key Technologies Used