diff options
| -rw-r--r-- | lib/audio/AudioPlayer.svelte (renamed from lib/components/AudioPlayer.svelte) | 0 | ||||
| -rw-r--r-- | lib/components/AppVersion.svelte | 2 | ||||
| -rw-r--r-- | lib/credits/credits.ts (renamed from credits/credits.ts) | 0 | ||||
| -rw-r--r-- | lib/reading/TextSizeChoice.svelte (renamed from lib/components/TextSizeChoice.svelte) | 0 | ||||
| -rw-r--r-- | lib/screens/CreditsScreen.svelte | 2 | ||||
| -rw-r--r-- | lib/screens/SettingsScreen.svelte | 4 | ||||
| -rw-r--r-- | routes/+layout.svelte | 2 | ||||
| -rw-r--r-- | tsconfig.json | 1 | ||||
| -rw-r--r-- | utils/version/version.ts (renamed from lib/version/version.ts) | 0 |
9 files changed, 5 insertions, 6 deletions
diff --git a/lib/components/AudioPlayer.svelte b/lib/audio/AudioPlayer.svelte index d5aa1d0..d5aa1d0 100644 --- a/lib/components/AudioPlayer.svelte +++ b/lib/audio/AudioPlayer.svelte diff --git a/lib/components/AppVersion.svelte b/lib/components/AppVersion.svelte index 28554a7..703b810 100644 --- a/lib/components/AppVersion.svelte +++ b/lib/components/AppVersion.svelte @@ -1,5 +1,5 @@ <script lang="ts"> - import { APP_VERSION } from '@hollowdark/lib/version/version' + import { APP_VERSION } from '@hollowdark/utils/version/version' </script> <p class="app-version">v {APP_VERSION}</p> diff --git a/credits/credits.ts b/lib/credits/credits.ts index d86517d..d86517d 100644 --- a/credits/credits.ts +++ b/lib/credits/credits.ts diff --git a/lib/components/TextSizeChoice.svelte b/lib/reading/TextSizeChoice.svelte index f508c84..f508c84 100644 --- a/lib/components/TextSizeChoice.svelte +++ b/lib/reading/TextSizeChoice.svelte diff --git a/lib/screens/CreditsScreen.svelte b/lib/screens/CreditsScreen.svelte index 7482361..2f4bdd5 100644 --- a/lib/screens/CreditsScreen.svelte +++ b/lib/screens/CreditsScreen.svelte @@ -1,5 +1,5 @@ <script lang="ts"> - import { CREDITS, type CreditKind } from '@hollowdark/credits/credits' + import { CREDITS, type CreditKind } from '@hollowdark/lib/credits/credits' interface Props { onBack: () => void diff --git a/lib/screens/SettingsScreen.svelte b/lib/screens/SettingsScreen.svelte index 63b6ba0..aa7d1c9 100644 --- a/lib/screens/SettingsScreen.svelte +++ b/lib/screens/SettingsScreen.svelte @@ -1,11 +1,11 @@ <script lang="ts"> import Slider from '@hollowdark/lib/components/Slider.svelte' - import TextSizeChoice from '@hollowdark/lib/components/TextSizeChoice.svelte' + import TextSizeChoice from '@hollowdark/lib/reading/TextSizeChoice.svelte' import ToggleSwitch from '@hollowdark/lib/components/ToggleSwitch.svelte' import { ambientVolume, masterMuted } from '@hollowdark/lib/audio/state' import { highContrast, reduceMotion } from '@hollowdark/lib/accessibility/state' import { textSize, type TextSize } from '@hollowdark/lib/reading/state' - import { APP_VERSION_FULL } from '@hollowdark/lib/version/version' + import { APP_VERSION_FULL } from '@hollowdark/utils/version/version' interface Props { onBack: () => void diff --git a/routes/+layout.svelte b/routes/+layout.svelte index 695e64d..0cf4c43 100644 --- a/routes/+layout.svelte +++ b/routes/+layout.svelte @@ -1,6 +1,6 @@ <script lang="ts"> import { base } from '$app/paths' - import AudioPlayer from '@hollowdark/lib/components/AudioPlayer.svelte' + import AudioPlayer from '@hollowdark/lib/audio/AudioPlayer.svelte' import { highContrast, reduceMotion } from '@hollowdark/lib/accessibility/state' import { textSize, type TextSize } from '@hollowdark/lib/reading/state' diff --git a/tsconfig.json b/tsconfig.json index d4d45ba..6e2b9d0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -51,7 +51,6 @@ "birth/**/*.ts", "death/**/*.ts", "continuation/**/*.ts", - "credits/**/*.ts", "worldgen/**/*.ts", "persistence/**/*.ts", "rng/**/*.ts", diff --git a/lib/version/version.ts b/utils/version/version.ts index 69377b8..69377b8 100644 --- a/lib/version/version.ts +++ b/utils/version/version.ts |
