refactor: replace export* barrels with explicit named exports

Wildcard re-exports obscure each slice public surface and weaken
tree-shaking. Convert to explicit named re-exports with export/export
type split (B-1) for ComparisonView, ChangeAppTheme, Breadcrumb/model,
and FilterAndSortFonts/api barrels.
This commit is contained in:
Ilia Mashkov
2026-06-02 23:02:18 +03:00
parent c6c8497906
commit 771bda745c
5 changed files with 24 additions and 9 deletions
+7 -2
View File
@@ -1,2 +1,7 @@
export * from './store/scrollBreadcrumbsStore.svelte';
export * from './types/types.ts';
export {
__resetScrollBreadcrumbsStore,
createScrollBreadcrumbsStore,
getScrollBreadcrumbsStore,
} from './store/scrollBreadcrumbsStore.svelte';
export type { BreadcrumbItem } from './store/scrollBreadcrumbsStore.svelte';
export type { NavigationAction } from './types/types.ts';