Skip to content

Commit 46f3c20

Browse files
committed
Remove typedoctheme, only support typedoc-theme
1 parent 4fadd91 commit 46f3c20

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
- TypeDoc will now detect and warn if multiple instances of the package are loaded. This usually means that a plugin has its own version of TypeDoc installed, which will lead to things breaking in unexpected ways.
66
It will only work if both loaded TypeDocs are v0.22.9 or later.
7-
- TypeDoc will now automatically load packages with `typedoctheme` or `typedoc-theme` in their keywords.
7+
- TypeDoc will now automatically load packages with `typedoc-theme` in their keywords.
88
Plugins which define a custom theme should include this keyword so that they can be automatically collected and displayed at https://typedoc.org/guides/themes/.
99

1010
### Bug Fixes

src/lib/utils/plugins.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,7 @@ function loadPackageInfo(logger: Logger, fileName: string): any {
106106
}
107107
}
108108

109-
const PLUGIN_KEYWORDS = [
110-
"typedocplugin",
111-
"typedoc-plugin",
112-
"typedoctheme",
113-
"typedoc-theme",
114-
];
109+
const PLUGIN_KEYWORDS = ["typedocplugin", "typedoc-plugin", "typedoc-theme"];
115110

116111
/**
117112
* Test whether the given package info describes a TypeDoc plugin.

0 commit comments

Comments
 (0)