feat(client): migrate to pnpm

Signed-off-by: Noa Virellia <noa@requiem.garden>
This commit was merged in pull request #5.
This commit is contained in:
2026-01-20 13:32:37 +08:00
parent b8a2e24bd0
commit 7edcda544b
6 changed files with 7947 additions and 1822 deletions

View File

@@ -47,11 +47,11 @@ const SidebarLayoutProfileRoute = SidebarLayoutProfileRouteImport.update({
} as any)
export interface FileRoutesByFullPath {
'/': typeof SidebarLayoutIndexRoute
'/authorize': typeof AuthorizeRoute
'/magicLinkSent': typeof MagicLinkSentRoute
'/token': typeof TokenRoute
'/profile': typeof SidebarLayoutProfileRoute
'/': typeof SidebarLayoutIndexRoute
}
export interface FileRoutesByTo {
'/authorize': typeof AuthorizeRoute
@@ -71,7 +71,7 @@ export interface FileRoutesById {
}
export interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath
fullPaths: '/authorize' | '/magicLinkSent' | '/token' | '/profile' | '/'
fullPaths: '/' | '/authorize' | '/magicLinkSent' | '/token' | '/profile'
fileRoutesByTo: FileRoutesByTo
to: '/authorize' | '/magicLinkSent' | '/token' | '/profile' | '/'
id:
@@ -117,7 +117,7 @@ declare module '@tanstack/react-router' {
'/_sidebarLayout': {
id: '/_sidebarLayout'
path: ''
fullPath: ''
fullPath: '/'
preLoaderRoute: typeof SidebarLayoutRouteImport
parentRoute: typeof rootRouteImport
}