Skip to content

Commit 2c21193

Browse files
committed
chore: replace unknown typedoc annotation with proper plugin
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
1 parent dc7f846 commit 2c21193

File tree

4 files changed

+21
-10
lines changed

4 files changed

+21
-10
lines changed

lib/LoggerBuilder.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ import type { IContext, ILogger, ILoggerFactory } from './contracts.ts'
88
import { getCurrentUser } from '@nextcloud/auth'
99
import { LogLevel } from './contracts.ts'
1010

11-
/**
12-
* @notExported
13-
*/
1411
export class LoggerBuilder {
1512
protected context: IContext
1613

package-lock.json

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
"eslint": "^9.39.1",
5555
"happy-dom": "^20.0.10",
5656
"typedoc": "^0.28.14",
57+
"typedoc-plugin-missing-exports": "^4.1.2",
5758
"typescript": "^5.9.3",
5859
"vite": "^7.2.1",
5960
"vitest": "^4.0.7"

typedoc.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
2-
"$schema": "https://typedoc.org/schema.json",
3-
"entryPoints": ["./lib/index.ts"],
4-
"out": "dist/doc",
5-
"githubPages": true,
6-
"navigationLinks": {
7-
"GitHub": "https://github.com/nextcloud/nextcloud-logger"
8-
}
2+
"$schema": "https://typedoc.org/schema.json",
3+
"entryPoints": ["./lib/index.ts"],
4+
"out": "dist/doc",
5+
"githubPages": true,
6+
"navigationLinks": {
7+
"GitHub": "https://github.com/nextcloud/nextcloud-logger"
8+
},
9+
"plugin": ["typedoc-plugin-missing-exports"]
910
}

0 commit comments

Comments
 (0)