Skip to content

Commit

Permalink
fix(typedoc): upgrade to 0.27 (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins authored Dec 6, 2024
1 parent c2bae68 commit 6d1f6b9
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 294 deletions.
6 changes: 3 additions & 3 deletions packages/config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@
"rollup-plugin-preserve-directives": "^0.4.0",
"semver": "^7.6.3",
"simple-git": "^3.27.0",
"typedoc": "0.26.11",
"typedoc-plugin-frontmatter": "1.0.0",
"typedoc-plugin-markdown": "4.2.10",
"typedoc": "^0.27.3",
"typedoc-plugin-frontmatter": "^1.1.0",
"typedoc-plugin-markdown": "^4.3.1",
"typescript-eslint": "^8.17.0",
"v8flags": "^4.0.1",
"vite-plugin-dts": "4.0.3",
Expand Down
3 changes: 2 additions & 1 deletion packages/config/src/typedoc/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,13 @@ export const generateReferenceDocs = async (options) => {
entryPoints: pkg.entryPoints,
tsconfig: pkg.tsconfig,
exclude: pkg.exclude,
out: pkg.outputDir,
})

const project = await app.convert()

if (project) {
await app.generateDocs(project, pkg.outputDir)
await app.generateOutputs(project)
}
}
}
Loading

0 comments on commit 6d1f6b9

Please sign in to comment.