Skip to content

Commit

Permalink
chore: 🤖 bump @tanstack/react-router to v1.56.1 (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmy-guzman authored Sep 6, 2024
1 parent 1ec7c87 commit 77f9cdf
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 14 deletions.
Binary file modified bun.lockb
Binary file not shown.
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,20 @@
},
"prettier": "@jimmy.codes/prettier-config",
"dependencies": {
"@tanstack/react-query": "5.53.1",
"@tanstack/react-router": "1.52.3",
"@tanstack/react-query": "5.54.1",
"@tanstack/react-router": "1.56.1",
"clsx": "2.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwind-merge": "2.5.2"
},
"devDependencies": {
"@iconify-json/logos": "1.2.0",
"@iconify-json/lucide": "1.2.1",
"@iconify-json/lucide": "1.2.2",
"@iconify/tailwind": "1.1.3",
"@jimmy.codes/eslint-config": "1.9.0",
"@jimmy.codes/prettier-config": "1.1.0",
"@playwright/test": "1.46.1",
"@playwright/test": "1.47.0",
"@storybook/addon-a11y": "8.2.9",
"@storybook/addon-essentials": "8.2.9",
"@storybook/addon-interactions": "8.2.9",
Expand All @@ -47,14 +47,14 @@
"@storybook/react": "8.2.9",
"@storybook/react-vite": "8.2.9",
"@tailwindcss/typography": "0.5.15",
"@tanstack/react-query-devtools": "5.53.1",
"@tanstack/router-devtools": "1.52.3",
"@tanstack/router-vite-plugin": "1.52.0",
"@tanstack/react-query-devtools": "5.54.1",
"@tanstack/router-devtools": "1.56.1",
"@tanstack/router-vite-plugin": "1.56.1",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@total-typescript/ts-reset": "0.6.0",
"@total-typescript/ts-reset": "0.6.1",
"@types/bun": "1.1.8",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
Expand All @@ -68,16 +68,16 @@
"gitzy": "5.4.0",
"happy-dom": "15.7.3",
"is-ci": "3.0.1",
"knip": "5.29.1",
"lefthook": "1.7.14",
"msw": "2.4.1",
"postcss": "8.4.42",
"knip": "5.29.2",
"lefthook": "1.7.15",
"msw": "2.4.2",
"postcss": "8.4.45",
"prettier": "3.3.3",
"storybook": "8.2.9",
"tailwindcss": "3.4.10",
"turbo": "2.1.1",
"typescript": "5.4.5",
"vite": "5.4.2",
"vite": "5.4.3",
"vite-tsconfig-paths": "5.0.1",
"vitest": "2.0.5"
},
Expand Down
33 changes: 32 additions & 1 deletion src/route-tree.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,38 @@ declare module "@tanstack/react-router" {

// Create and export the route tree

export const routeTree = rootRoute.addChildren({ IndexRoute });
interface FileRoutesByFullPath {
"/": typeof IndexRoute;
}

interface FileRoutesByTo {
"/": typeof IndexRoute;
}

interface FileRoutesById {
"/": typeof IndexRoute;
}

interface FileRouteTypes {
fileRoutesByFullPath: FileRoutesByFullPath;
fullPaths: "/";
fileRoutesByTo: FileRoutesByTo;
to: "/";
id: "/";
fileRoutesById: FileRoutesById;
}

interface RootRouteChildren {
IndexRoute: typeof IndexRoute;
}

const rootRouteChildren: RootRouteChildren = {
IndexRoute: IndexRoute,
};

export const routeTree = rootRoute
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>();

/* prettier-ignore-end */

Expand Down

0 comments on commit 77f9cdf

Please sign in to comment.