From 3a2e778b9854794110c6c379c3a0c1236bb9df11 Mon Sep 17 00:00:00 2001 From: Sam Chau Date: Mon, 3 Nov 2025 16:50:18 +1030 Subject: [PATCH] refactor(stores): move to lib/client --- src/{ => lib/client}/stores/theme.ts | 0 src/{ => lib/client}/stores/toast.ts | 0 svelte.config.js | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename src/{ => lib/client}/stores/theme.ts (100%) rename src/{ => lib/client}/stores/toast.ts (100%) diff --git a/src/stores/theme.ts b/src/lib/client/stores/theme.ts similarity index 100% rename from src/stores/theme.ts rename to src/lib/client/stores/theme.ts diff --git a/src/stores/toast.ts b/src/lib/client/stores/toast.ts similarity index 100% rename from src/stores/toast.ts rename to src/lib/client/stores/toast.ts diff --git a/svelte.config.js b/svelte.config.js index 35589a4..9a483c7 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -13,7 +13,7 @@ const config = { $config: './src/utils/config/config.ts', $logger: './src/utils/logger/logger.ts', '$logger/*': './src/utils/logger/*', - $stores: './src/stores', + $stores: './src/lib/client/stores', $components: './src/components', $assets: './src/lib/client/assets', $server: './src/server',