refactor(packages): consolidate 4 help packages into @manacore/help

Merged shared-help-types + shared-help-content + shared-help-ui into
@manacore/help. Deleted shared-help-mobile (0 consumers).

Updated imports in all 20 web apps.

Package count: 53 → 49

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-28 17:36:32 +01:00
parent 1104c0489d
commit d70ab97a66
879 changed files with 368 additions and 69099 deletions

View file

@ -40,8 +40,7 @@
"@manacore/shared-branding": "workspace:*",
"@manacore/shared-error-tracking": "workspace:*",
"@manacore/shared-i18n": "workspace:*",
"@manacore/shared-help-types": "workspace:*",
"@manacore/shared-help-ui": "workspace:*",
"@manacore/help": "workspace:*",
"@manacore/shared-icons": "workspace:*",
"@manacore/local-store": "workspace:*",
"@manacore/shared-app-onboarding": "workspace:*",

View file

@ -2,7 +2,7 @@
* Help content for SkillTree app
*/
import type { HelpContent } from '@manacore/shared-help-types';
import type { HelpContent } from '@manacore/help';
export function getSkillTreeHelpContent(locale: string): HelpContent {
const isDE = locale === 'de';

View file

@ -1,7 +1,7 @@
<script lang="ts">
import { goto } from '$app/navigation';
import { locale } from 'svelte-i18n';
import { HelpPage, getHelpTranslations } from '@manacore/shared-help-ui';
import { HelpPage, getHelpTranslations } from '@manacore/help';
import { getSkillTreeHelpContent } from '$lib/content/help/index.js';
const content = $derived(getSkillTreeHelpContent($locale ?? 'de'));