Skip to content

Commit 39fb886

Browse files
author
Whitzscott (Developer)
committed
removed @SDK and instead switched to ~/sdk/
1 parent 7c6ba91 commit 39fb886

4 files changed

Lines changed: 4 additions & 6 deletions

File tree

src/Utility/Supabase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { createClient, type SupabaseClient } from '@supabase/supabase-js';
22
import { SUPABASE_URL, SUPABASE_ANON_KEY } from '~/config';
3-
import { SupabaseUtil } from '@sdk/SupabaseUtils';
3+
import { SupabaseUtil } from '~/sdk/SupabaseUtils';
44

55
let _client: SupabaseClient | null = null;
66

src/Utility/Utility.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { SupabaseUtil } from '@sdk/SupabaseUtils';
1+
import { SupabaseUtil } from '~/sdk/SupabaseUtils';
22
import { db } from './Supabase';
33

44
const FetcherClient = SupabaseUtil.instance.fetcher;

src/sdk/supabasefunc/select.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { SupabaseClient } from '@supabase/supabase-js';
2-
import type { ExtraFilter, Match, Range, OrderBy } from '@sdk/Types';
3-
import { getCached, setCached } from '@sdk/cache';
2+
import type { ExtraFilter, Match, Range, OrderBy } from '~/sdk/types';
3+
import { getCached, setCached } from '~/sdk/cache';
44

55
const inflightSelects = new Map<string, Promise<any>>();
66

tsconfig.base.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
"@libs/*": ["src/lib/*"],
1313

1414
"@function": ["src/components/service-function"],
15-
16-
"@sdk/*": ["src/sdk/*"]
1715
}
1816
}
1917
}

0 commit comments

Comments
 (0)