Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: replace obsolete mentions of typedoc #2957

Merged
merged 2 commits into from
Jun 19, 2024
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
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ versions.json
/dist
/docs/.vitepress/cache
/docs/.vitepress/dist
/docs/api/typedoc.json
/docs/public/api-diff-index.json
/lib

Expand Down
4 changes: 2 additions & 2 deletions scripts/apidocs/utils/format.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { format } from 'prettier';
import prettierConfig from '../../../.prettierrc.js';

/**
* Formats markdown contents.
* Formats Markdown contents.
*
* @param text The text to format.
*/
Expand All @@ -12,7 +12,7 @@ export async function formatMarkdown(text: string): Promise<string> {
}

/**
* Formats typedoc contents.
* Formats TypeScript contents.
*
* @param text The text to format.
*/
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"exclude": [
"node_modules",
"dist",
// required for the typedoc related tests on macOS #2280
// required for the signature related tests on macOS #2280
"test/scripts/apidocs/temp"
]
}