Skip to content

Commit 3094373

Browse files
authored
Merge branch 'main' into main
2 parents 9fb5e53 + c154c1a commit 3094373

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+7583
-11924
lines changed

.eslintrc

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: tannerlinsley
File renamed without changes.

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ routeTree.gen.ts
66
src/blog/tanstack-db-0.1-the-embedded-client-database-for-tanstack-query.md
77
.content-collections
88
.claude
9+
dist/**
10+
.output/**

.prettierrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true,
4+
"trailingComma": "all"
5+
}

AGENTS.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ This ensures the loader only re-runs when the specific dependencies change, not
7777

7878
**Loaders in TanStack Start/Router are isomorphic and cannot call server logic unless via a call to a server function.**
7979

80-
Loaders run on both the server and client, so they cannot directly access server-only APIs (like file system, database connections, etc.). To perform server-side operations, loaders must call server functions (e.g., TanStack server functions created via `createServerFn()`, Convex queries/mutations, API routes, or other server functions).
80+
Loaders run on both the server and client, so they cannot directly access server-only APIs (like file system, database connections, etc.). To perform server-side operations, loaders must call server functions (e.g., TanStack server functions created via `createServerFn()`, API routes, or other server functions).
8181

8282
**Bad:**
8383

@@ -93,11 +93,9 @@ loader: async () => {
9393

9494
```typescript
9595
loader: async () => {
96-
// Call a server function instead (TanStack server function or Convex)
96+
// Call a server function instead
9797
// TanStack server functions created via createServerFn() can be called directly
9898
const data = await serverFn({ data: { id: '123' } })
99-
// or
100-
const data = await convex.query(api.data.getData)
10199
return { data }
102100
}
103101
```

agents/tasks/code-splitting-fixes.md

Lines changed: 0 additions & 37 deletions
This file was deleted.

agents/tasks/feed-admin-fixes.md

Lines changed: 0 additions & 80 deletions
This file was deleted.

0 commit comments

Comments
 (0)