Skip to content

Commit

Permalink
chore: route tree gen
Browse files Browse the repository at this point in the history
  • Loading branch information
hmerritt committed May 31, 2024
1 parent cb99b86 commit ba81599
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/bootstrap/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as core from "./core";
/**
* Internal adrift version.
*/
export const adriftVersion = "0.11.503";
export const adriftVersion = "0.11.506";

/**
* Bumps the adrift `patch` version number using the total commit count.
Expand Down
27 changes: 27 additions & 0 deletions src/routeTree.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,30 @@ export const routeTree = rootRoute.addChildren({
})

/* prettier-ignore-end */

/* ROUTE_MANIFEST_START
{
"routes": {
"__root__": {
"filePath": "__root.tsx",
"children": [
"/",
"/user"
]
},
"/": {
"filePath": "index.tsx"
},
"/user": {
"filePath": "user.lazy.tsx",
"children": [
"/user/$userId"
]
},
"/user/$userId": {
"filePath": "user.$userId.lazy.tsx",
"parent": "/user"
}
}
}
ROUTE_MANIFEST_END */

0 comments on commit ba81599

Please sign in to comment.