Skip to content

Commit 690dc85

Browse files
committed
fix: perf
1 parent bbe40b9 commit 690dc85

Some content is hidden

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

42 files changed

+704
-374
lines changed

content-collections.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,17 @@ const posts = defineCollection({
99
title: z.string(),
1010
published: z.string().date(),
1111
draft: z.boolean().optional(),
12+
excerpt: z.string(),
1213
authors: z.string().array(),
1314
}),
1415
transform: ({ content, ...post }) => {
15-
const frontMatter = extractFrontMatter(content)
16-
1716
// Extract header image (first image after frontmatter)
1817
const headerImageMatch = content.match(/!\[([^\]]*)\]\(([^)]+)\)/)
1918
const headerImage = headerImageMatch ? headerImageMatch[2] : undefined
2019

2120
return {
2221
...post,
2322
slug: post._meta.path,
24-
excerpt: frontMatter.excerpt,
25-
description: frontMatter.data.description,
2623
headerImage,
2724
content,
2825
}

src/blog/ag-grid-partnership.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: TanStack Table + Ag-Grid Partnership
33
published: 2022-06-17
4+
excerpt: AG Grid is now the official TanStack Table open-source partner. Together we'll educate the ecosystem about the differences between the two libraries and when to choose which.
45
authors:
56
- Tanner Linsley
67
- Niall Crosby

src/blog/announcing-tanstack-form-v1.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Announcing TanStack Form v1
33
published: 2025-03-03
4+
excerpt: The first stable version of TanStack Form is live and ready for production. We support five frameworks at launch — React, Vue, Angular, Solid, and Lit.
45
authors:
56
- Corbin Crutchley
67
---

src/blog/announcing-tanstack-query-v4.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Announcing TanStack Query v4
33
published: 2022-07-14
4+
excerpt: The next version of TanStack Query is here. The rebranding and monorepo restructuring finally allows us to bring the joy of react-query to other frameworks like Vue, Svelte, and Solid.
45
authors:
56
- Dominik Dorfmeister
67
---

src/blog/announcing-tanstack-query-v5.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Announcing TanStack Query v5
33
published: 2023-10-17
4+
excerpt: After 91 alpha releases, 35 betas, and 16 release candidates, TanStack Query v5.0.0 is finally here — smaller, better, and more intuitive than ever.
45
authors:
56
- Dominik Dorfmeister
67
---

src/blog/announcing-tanstack-start-v1.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: TanStack Start v1 Release Candidate
33
published: 2025-09-23
4+
excerpt: TanStack Start has officially reached a v1.0 Release Candidate. This is the build we expect to ship as 1.0, pending your final feedback, docs polish, and a few last-mile fixes.
45
authors:
56
- Tanner Linsley
67
---

src/blog/directives-and-the-platform-boundary.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Directives and the Platform Boundary
33
published: 2025-10-24
4+
excerpt: Frameworks are inventing top-level directives that look like language features but aren't standardized. A constructive look at portability and keeping a clear boundary between platform and library spaces.
45
authors:
56
- Tanner Linsley
67
description: A constructive look at framework directives, portability, and keeping a clear boundary between platform and library spaces.

src/blog/from-docs-to-agents.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: 'Introducing TanStack Intent: Ship Agent Skills with your npm Packages'
33
published: 2026-03-04
4+
excerpt: Your docs are good. Your types are solid. Your agent still gets it wrong. TanStack Intent lets you ship agent skills alongside your npm packages so AI tools actually know how to use your library.
45
authors:
56
- Sarah Gerrard
67
- Kyle Mathews

src/blog/generation-hooks.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: 'Generation Hooks: Type-Safe AI Beyond Chat'
33
published: 2026-03-11
4+
excerpt: Chat is just the beginning. Your AI app needs image generation, text-to-speech, transcription, and more. TanStack AI now ships generation hooks — a unified set of React hooks for every non-chat AI activity.
45
authors:
56
- Alem Tuzlak
67
---

src/blog/netlify-partnership.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: TanStack + Netlify Partnership
33
published: 2025-03-18
4+
excerpt: Netlify is now the official deployment partner for TanStack Start. Their focus on speed, simplicity, and flexibility aligns perfectly with our vision for full-stack development.
45
authors:
56
- Tanner Linsley
67
---

0 commit comments

Comments
 (0)