chore: remove @manacore/shared-supabase package

Package was unused — no imports found across the entire codebase.
All apps have migrated to direct PostgreSQL (Drizzle ORM) for backends
and mana-core-auth API for mobile/web clients.

Removes package and all documentation references.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-23 12:07:14 +01:00
parent 5bd967900f
commit b76746229e
7 changed files with 0 additions and 128 deletions

View file

@ -712,7 +712,6 @@ export const characters = pgTable('characters', {
#### Option B: Alles auf Supabase
```typescript
// packages/shared-supabase/src/client.ts
export const createProjectClient = (project: 'maerchenzauber' | 'manadeck' | 'uload') => {
return createClient(
process.env[`${project.toUpperCase()}_SUPABASE_URL`],

View file

@ -454,7 +454,6 @@ Alle Projekte teilen gemeinsame Packages unter `packages/`:
| --------------------------- | ---------------------------------------- |
| `@manacore/shared-types` | Gemeinsame TypeScript Types |
| `@manacore/shared-utils` | Utility-Funktionen (Date, String, Async) |
| `@manacore/shared-supabase` | Einheitlicher Supabase Client |
| `@manacore/shared-config` | Gemeinsame Konfiguration |
### Auth & Security
@ -498,7 +497,6 @@ Alle Projekte teilen gemeinsame Packages unter `packages/`:
```typescript
// In einem beliebigen Projekt
import { User, ApiResponse } from '@manacore/shared-types';
import { createSupabaseClient } from '@manacore/shared-supabase';
import { formatDate, truncate, retry } from '@manacore/shared-utils';
```

View file

@ -13,7 +13,6 @@ This document outlines the plan to unify common code across all web apps in the
- [x] `@manacore/shared-theme-ui` - Theme UI Components (ThemeToggle, ThemeSelector)
- [x] `@manacore/shared-utils` - Unified Utilities (formatting, validation, async, date, keyboard)
- [x] `@manacore/shared-types` - Unified TypeScript Types
- [x] `@manacore/shared-supabase` - Unified Supabase Client Factory
- [x] `@manacore/shared-i18n` - Unified i18n (languages, locale detection, translations)
- [x] `@manacore/shared-config` - Unified Config (env validation)
- [x] `@manacore/shared-branding` - **NEW** Unified App Branding (logos, colors, app config)
@ -232,7 +231,6 @@ packages/shared-i18n/
3. **Phase 3** (Completed)
- [x] `@manacore/shared-utils`
- [x] `@manacore/shared-types`
- [x] `@manacore/shared-supabase`
4. **Phase 4** (Completed)
- [x] `@manacore/shared-i18n`