Skip to content

Commit 6d1f6b9

Browse files
fix(typedoc): upgrade to 0.27 (#185)
1 parent c2bae68 commit 6d1f6b9

File tree

3 files changed

+35
-294
lines changed

3 files changed

+35
-294
lines changed

packages/config/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@
7575
"rollup-plugin-preserve-directives": "^0.4.0",
7676
"semver": "^7.6.3",
7777
"simple-git": "^3.27.0",
78-
"typedoc": "0.26.11",
79-
"typedoc-plugin-frontmatter": "1.0.0",
80-
"typedoc-plugin-markdown": "4.2.10",
78+
"typedoc": "^0.27.3",
79+
"typedoc-plugin-frontmatter": "^1.1.0",
80+
"typedoc-plugin-markdown": "^4.3.1",
8181
"typescript-eslint": "^8.17.0",
8282
"v8flags": "^4.0.1",
8383
"vite-plugin-dts": "4.0.3",

packages/config/src/typedoc/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,13 @@ export const generateReferenceDocs = async (options) => {
4646
entryPoints: pkg.entryPoints,
4747
tsconfig: pkg.tsconfig,
4848
exclude: pkg.exclude,
49+
out: pkg.outputDir,
4950
})
5051

5152
const project = await app.convert()
5253

5354
if (project) {
54-
await app.generateDocs(project, pkg.outputDir)
55+
await app.generateOutputs(project)
5556
}
5657
}
5758
}

0 commit comments

Comments
 (0)