🔧 Update project configuration

- Update dockerignore patterns
- Update husky post-push hook
- Update pnpm workspace and lockfile

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Quinn Ftw 2025-12-30 01:37:06 -08:00
parent 78f63717bc
commit a77899de2e
4 changed files with 971 additions and 216 deletions

View file

@ -8,7 +8,7 @@ node_modules/
**/.next/
build/
**/build/
# Note: dist/ excluded via specific patterns below to allow service-registry
# Note: dist/ excluded via specific patterns below
# Development
.git/
@ -86,15 +86,13 @@ __mocks__/
tsconfig.tsbuildinfo
**/tsconfig.tsbuildinfo
# Infrastructure (allow service-registry for Docker builds)
!infrastructure/service-registry/
# Infrastructure
scripts/git-hooks/
# Exclude dist from most places but allow for service-registry
# Exclude dist from most places
apps/**/dist/
packages/**/dist/
features/**/dist/
!infrastructure/service-registry/**/dist/
# Temporary files
tmp/

View file

@ -181,10 +181,6 @@ if [[ -z "$CHANGED_SERVICES" ]]; then
CHANGED_SERVICES="status-dashboard"
fi
if echo "$CHANGED_FILES" | grep -q "infrastructure/service-registry/"; then
CHANGED_SERVICES="$CHANGED_SERVICES service-registry"
fi
# Conversation Assistant - detect which component changed
if echo "$CHANGED_FILES" | grep -q "features/conversation-assistant/macos/"; then
CHANGED_SERVICES="$CHANGED_SERVICES conversation-assistant-macos"
@ -206,10 +202,6 @@ else
log_step "Deploying status-dashboard..."
run_cmd "$INFRA_SCRIPTS/deploy-status-dashboard.sh" || log_warn "status-dashboard deploy failed"
;;
service-registry)
log_step "Deploying service-registry..."
run_cmd "$INFRA_SCRIPTS/deploy-service-registry.sh" || log_warn "service-registry deploy failed"
;;
conversation-assistant-macos)
log_step "Deploying conversation-assistant macOS app to plum..."
run_cmd "$CODEBASE_ROOT/features/conversation-assistant/macos/deploy-remote.sh" || log_warn "conversation-assistant-macos deploy failed"

1165
pnpm-lock.yaml generated

File diff suppressed because it is too large Load diff

View file

@ -13,6 +13,12 @@ packages:
- 'features/*/client'
- 'features/*/client/typescript'
# webmap multi-service feature
- 'features/webmap/router'
- 'features/webmap/api'
- 'features/webmap/frontend'
- 'features/webmap/shared'
# Cross-layer feature packages (frontend + backend combined)
- 'features/payments'