mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-26 22:57:43 +02:00
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:
parent
1104c0489d
commit
d70ab97a66
879 changed files with 368 additions and 69099 deletions
|
|
@ -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:*",
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
|
|
|
|||
|
|
@ -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'));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue