refactor/code-splitting #31

Merged
ilia merged 32 commits from refactor/code-splitting into main 2026-04-08 06:34:20 +00:00
5 changed files with 7 additions and 7 deletions
Showing only changes of commit b40e651be4 - Show all commits

View File

@@ -1,7 +1,7 @@
import {
FontNetworkError,
FontResponseError,
} from './index';
} from './errors';
describe('FontNetworkError', () => {
it('has correct name', () => {

View File

@@ -5,7 +5,7 @@ import {
type QueryObserverOptions,
type QueryObserverResult,
} from '@tanstack/query-core';
import type { UnifiedFont } from '../types';
import type { UnifiedFont } from '../../types';
/**
* Base class for font stores using TanStack Query

View File

@@ -11,7 +11,7 @@ export {
createUnifiedFontStore,
type UnifiedFontStore,
unifiedFontStore,
} from './unifiedFontStore.svelte';
} from './unifiedFontStore/unifiedFontStore.svelte';
// Applied fonts manager (CSS loading - unchanged)
export { appliedFontsManager } from './appliedFontsStore/appliedFontsStore.svelte';

View File

@@ -13,10 +13,10 @@
*/
import type { QueryObserverOptions } from '@tanstack/query-core';
import type { ProxyFontsParams } from '../../api';
import { fetchProxyFonts } from '../../api';
import type { UnifiedFont } from '../types';
import { BaseFontStore } from './baseFontStore.svelte';
import type { ProxyFontsParams } from '../../../api';
import { fetchProxyFonts } from '../../../api';
import type { UnifiedFont } from '../../types';
import { BaseFontStore } from '../baseFontStore/baseFontStore.svelte';
/**
* Unified font store wrapping TanStack Query with Svelte 5 runes