Skip to content

Commit 20c0abe

Browse files
committed
Use more conventional component naming
1 parent d3adb89 commit 20c0abe

11 files changed

+10
-10
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/routes/[...lang]/docs/__layout.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script>
22
import { t, locale } from 'svelte-intl-precompile';
3-
import NavLink from '$lib/nav-link.svelte';
3+
import NavLink from '$lib/NavLink.svelte';
44
</script>
55

66
<nav class="fixed w-76 h-screen shadow-xl bg-gray-500">

src/routes/[...lang]/docs/configuration.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<script lang="ts">
55
import { t } from 'svelte-intl-precompile';
66
import scrollToHash from '$lib/scroll-to-hash';;
7-
import CodeInline from '$lib/code-inline.svelte';
8-
import Codeblock from '$lib/codeblock.svelte';
9-
import DefinitionEntry from '$lib/definition-entry.svelte';
7+
import CodeInline from '$lib/CodeInline.svelte';
8+
import Codeblock from '$lib/Codeblock.svelte';
9+
import DefinitionEntry from '$lib/DefinitionEntry.svelte';
1010
scrollToHash();
1111
</script>
1212

src/routes/[...lang]/docs/getting-started.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
<script lang="ts">
66
import { t } from 'svelte-intl-precompile';
7-
import Codeblock from '$lib/codeblock.svelte';
8-
import CodeInline from '$lib/code-inline.svelte';
7+
import Codeblock from '$lib/Codeblock.svelte';
8+
import CodeInline from '$lib/CodeInline.svelte';
99
import scrollToHash from '$lib/scroll-to-hash';;
1010
scrollToHash();
1111
</script>

src/routes/[...lang]/docs/introduction.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script context="module" lang="ts">
2-
import Playground from "$lib/playground.svelte";
2+
import Playground from "$lib/Playground.svelte";
33
import { t } from "precompile-intl-runtime";
44
export const prerender = true;
55
</script>

src/routes/[...lang]/docs/playground.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<script lang="ts">
66
import { t } from "precompile-intl-runtime";
7-
import Playground from "$lib/playground.svelte";
7+
import Playground from "$lib/Playground.svelte";
88
</script>
99

1010
<svelte:head>

src/routes/[...lang]/docs/usage.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
</script>
44
<script>
55
import { t } from 'svelte-intl-precompile';
6-
import Codeblock from '$lib/codeblock.svelte';
7-
import DefinitionEntry from '$lib/definition-entry.svelte';
6+
import Codeblock from '$lib/Codeblock.svelte';
7+
import DefinitionEntry from '$lib/DefinitionEntry.svelte';
88
import scrollToHash from '$lib/scroll-to-hash';;
99
scrollToHash();
1010
</script>

0 commit comments

Comments
 (0)