Skip to content

Commit da07da6

Browse files
committed
feat(core): typedoc 0.28 compatibility fixes and enhancements
1 parent 179a54c commit da07da6

File tree

247 files changed

+5251
-6220
lines changed

Some content is hidden

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

247 files changed

+5251
-6220
lines changed

.changeset/clear-eagles-taste.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
'typedoc-plugin-markdown': minor
3+
---
4+
5+
- Implemented custom routers for plugin to support TypeDoc 0.28 router implementation.
6+
- Updated HTML anchors in headings and table rows to be unique, to avoid clashing with any auto generated ids.
7+
- Added "typeAliasPropertiesFormat" option to support TypeDoc 0.28 updated behaviour for Object literal type alias types.
8+
- The page header (if displayed) will contain separate links to Readme and index page (if applicable).

.changeset/config.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
"ignore": [
1414
"@devtools/*",
1515
"typedoc-github-wiki-theme",
16-
"typedoc-gitlab-wiki-theme"
16+
"typedoc-gitlab-wiki-theme",
17+
"typedoc-vitepress-theme",
18+
"typedoc-plugin-frontmatter",
19+
"docusaurus-plugin-typedoc",
20+
"typedoc-plugin-remark"
1721
]
1822
}

.github/workflows/ci.docusaurus-plugin-typedoc.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
- '!packages/docusaurus-plugin-typedoc/README.md'
77
- '!packages/docusaurus-plugin-typedoc/CHANGELOG.md'
88
- '!packages/docusaurus-plugin-typedoc/package.json'
9+
branches:
10+
- main
11+
- release
12+
- beta
913
pull_request:
1014
paths:
1115
- 'packages/docusaurus-plugin-typedoc/**'

.github/workflows/ci.typedoc-github-wiki-theme.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
- '!packages/typedoc-github-wiki-theme/README.md'
77
- '!packages/typedoc-github-wiki-theme/CHANGELOG.md'
88
- '!packages/typedoc-github-wiki-theme/package.json'
9+
branches:
10+
- main
11+
- release
12+
- beta
913
pull_request:
1014
paths:
1115
- 'packages/typedoc-github-wiki-theme/**'

.github/workflows/ci.typedoc-gitlab-wiki-theme.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
- '!packages/typedoc-gitlab-wiki-theme/README.md'
77
- '!packages/typedoc-gitlab-wiki-theme/CHANGELOG.md'
88
- '!packages/typedoc-gitlab-wiki-theme/package.json'
9+
branches:
10+
- main
11+
- release
12+
- beta
913
pull_request:
1014
paths:
1115
- 'packages/typedoc-gitlab-wiki-theme/**'

.github/workflows/ci.typedoc-plugin-frontmatter.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
- '!packages/typedoc-plugin-frontmatter/README.md'
77
- '!packages/typedoc-plugin-frontmatter/CHANGELOG.md'
88
- '!packages/typedoc-plugin-frontmatter/package.json'
9+
branches:
10+
- main
11+
- release
12+
- beta
913
pull_request:
1014
paths:
1115
- 'packages/typedoc-plugin-frontmatter/**'

.github/workflows/ci.typedoc-plugin-remark.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
- '!packages/typedoc-plugin-remark/README.md'
77
- '!packages/typedoc-plugin-remark/CHANGELOG.md'
88
- '!packages/typedoc-plugin-remark/package.json'
9+
branches:
10+
- main
11+
- release
12+
- beta
913
pull_request:
1014
paths:
1115
- 'packages/typedoc-plugin-remark/**'

.github/workflows/ci.typedoc-vitepress-theme.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
- '!packages/typedoc-vitepress-theme/README.md'
77
- '!packages/typedoc-vitepress-theme/CHANGELOG.md'
88
- '!packages/typedoc-vitepress-theme/package.json'
9+
branches:
10+
- main
11+
- release
12+
- beta
913
pull_request:
1014
paths:
1115
- 'packages/typedoc-vitepress-theme/**'

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
branches:
1111
- main
1212
- release
13+
- beta
1314
pull_request:
1415
paths:
1516
- 'packages/typedoc-plugin-markdown/**'

.gitignore

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
dist
55
.nyc_output/
66

7+
# yalc
8+
yalc.lock
9+
.yalc
10+
711
# testing
812
samples
913
typedoc-examples
@@ -15,27 +19,13 @@ html
1519
node_modules
1620

1721
# IDEs and editors
18-
/.idea
19-
.project
20-
.classpath
21-
.c9/
22-
*.launch
2322
.settings/
2423

2524
# misc
26-
/.sass-cache
27-
/connect.lock
28-
coverage
29-
/libpeerconnection.log
3025
npm-debug.log
31-
testem.log
3226
/typings
3327
.npmrc
3428

35-
# e2e
36-
/e2e/*.js
37-
/e2e/*.map
38-
3929
#System Files
4030
.DS_Store
4131
Thumbs.db

0 commit comments

Comments
 (0)