Refactor/reacrhitecture to fsd+ #49

Merged
ilia merged 70 commits from refactor/reacrhitecture-to-fsd+ into main 2026-06-03 09:55:47 +00:00
3 changed files with 5 additions and 5 deletions
Showing only changes of commit c72b51b1c7 - Show all commits
@@ -1,5 +1,5 @@
import { fontKeys } from '$shared/api/queryKeys'; import { fontKeys } from '$shared/api/queryKeys';
import { BaseQueryStore } from '$shared/lib'; import { BaseQueryStore } from '$shared/lib/helpers/BaseQueryStore/BaseQueryStore.svelte';
import { import {
fetchFontsByIds, fetchFontsByIds,
seedFontCache, seedFontCache,
+4 -3
View File
@@ -137,7 +137,8 @@ export {
type PerspectiveManager, type PerspectiveManager,
} from './createPerspectiveManager/createPerspectiveManager.svelte'; } from './createPerspectiveManager/createPerspectiveManager.svelte';
/** /*
* Base Query store using Tanstack query * BaseQueryStore is intentionally NOT re-exported here.
* It pulls @tanstack/query-core, so routing it through this leaf barrel would
* make every consumer of the barrel eager-load TanStack. Import it by path.
*/ */
export { BaseQueryStore } from './BaseQueryStore/BaseQueryStore.svelte';
-1
View File
@@ -5,7 +5,6 @@
*/ */
export { export {
BaseQueryStore,
createDebouncedState, createDebouncedState,
createEntityStore, createEntityStore,
createFilter, createFilter,