diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index c341f91..ba1bcfe 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -23,7 +23,7 @@ jobs: run: npm ci - name: Run type checking - run: npm run prepare && npm run check + run: npm run check - name: Run linting run: npm run lint diff --git a/src/lib/components/ui/page/page-with-claim.svelte b/src/lib/components/ui/page/page-with-claim.svelte index ac84ef6..57f04a3 100644 --- a/src/lib/components/ui/page/page-with-claim.svelte +++ b/src/lib/components/ui/page/page-with-claim.svelte @@ -3,7 +3,7 @@ import { cn, type WithElementRef } from "$lib/utils"; import HorizontalPagePadding from "./horizontal-page-padding.svelte"; import { Text } from "../typography"; - import { m } from "$i18n/messages"; + import { m } from "$lib/i18n/messages"; let { ref = $bindable(null), diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index c56f716..51cf9b5 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -2,7 +2,7 @@ import { HorizontalPagePadding, PageWithClaim } from "$lib/components/ui/page"; import { Headline, Text } from "$lib/components/ui/typography"; import { toggleMode } from "mode-watcher"; - import { m } from "$i18n/messages"; + import { m } from "$lib/i18n/messages.js"; export let data; diff --git a/src/server-hooks/i18nHandle.ts b/src/server-hooks/i18nHandle.ts index 173db8a..c2d8254 100644 --- a/src/server-hooks/i18nHandle.ts +++ b/src/server-hooks/i18nHandle.ts @@ -1,5 +1,5 @@ import type { Handle } from "@sveltejs/kit"; -import { paraglideMiddleware } from "$i18n/server"; +import { paraglideMiddleware } from "$lib/i18n/server"; /** * SvelteKit server hook that handles i18n localization