platform-codebase/pnpm-workspace.yaml
Quinn Ftw 8d0202ca81 chore: update pnpm workspace for new feature structure
Add workspace patterns for feature-sliced architecture:
- features/*/react: React packages within features
- features/*/client/*: Client packages (e.g., TypeScript clients)

Update pnpm-lock.yaml with new dependencies.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-29 04:03:21 -08:00

31 lines
960 B
YAML

packages:
# Feature packages (cohesive feature units)
- 'features/*/frontend'
- 'features/*/frontend-*'
- 'features/*/server'
- 'features/*/backend'
- 'features/*/agent'
- 'features/*/host-status-monitor'
- 'features/*/shared'
- 'features/*/worker'
- 'features/*/plugin-*'
- 'features/*/react'
- 'features/*/client/*'
# Cross-layer feature packages (frontend + backend combined)
- 'features/payments'
# Shared packages (cross-feature)
- '@packages/*'
- '@packages/@*/*'
- '@packages/@infrastructure/egirl-infra/core/*'
- '@packages/@infrastructure/egirl-infra/integrations/*'
# External: @ui component library (temporarily disabled - broken deps)
# - '../../../../@packages/@ui/packages/*'
# Infrastructure
- 'infrastructure/tests/*'
- 'infrastructure/service-registry/apps/*'
- 'infrastructure/service-registry/packages/@service-registry/*'
- 'infrastructure/service-registry/packages/architecture-viz'