Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/better-adults-cut.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@tanstack/config': minor
'@tanstack/typedoc-config': minor
---

feat: update to typedoc v0.28
6 changes: 6 additions & 0 deletions .changeset/easy-icons-drive.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@tanstack/typedoc-config': minor
'@tanstack/config': minor
---

BREAKING: typedoc output is no longer lower-cased due to API changes
19 changes: 1 addition & 18 deletions packages/typedoc-config/src/typedoc-custom-settings.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import {
MarkdownPageEvent,
MarkdownRendererEvent,
} from 'typedoc-plugin-markdown'
import { MarkdownPageEvent } from 'typedoc-plugin-markdown'

/**
* @param {import("typedoc-plugin-markdown").MarkdownApplication} app
Expand All @@ -20,18 +17,4 @@ export function load(app) {
'<!-- DO NOT EDIT: this page is autogenerated from the type comments -->\n\n'
},
)
// Rename output files
app.renderer.on(
MarkdownRendererEvent.BEGIN,
/**
* @param {import("typedoc-plugin-markdown").MarkdownRendererEvent} renderer
*/ (renderer) => {
renderer.urls = renderer.urls?.map((urlMapping) => {
const name = urlMapping.url.toLowerCase()
urlMapping.url = name
urlMapping.model.url = name
return urlMapping
})
},
)
}
90 changes: 53 additions & 37 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ catalog:
simple-git: ^3.28.0
tinyglobby: ^0.2.15
type-fest: ^5.0.1
typedoc: 0.27.9
typedoc-plugin-frontmatter: 1.2.1
typedoc-plugin-markdown: 4.4.2
typedoc: 0.28.14
typedoc-plugin-frontmatter: 1.3.0
typedoc-plugin-markdown: 4.9.0
typescript: ^5.9.2
typescript-eslint: ^8.46.0
vite: ^7.1.9
Expand Down
Loading