Skip to content

Commit

Permalink
fix(docs): downgrade typedoc-plugin-markdown to fix docs site generation
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaietta committed Dec 31, 2024
1 parent f123628 commit 40ca573
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
4 changes: 4 additions & 0 deletions .changeset/dry-gifts-joke.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
---

fix(docs): downgrade typedoc-plugin-markdown to fix docs site generation
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"typedoc": "^0.26.7",
"typedoc-plugin-markdown": "^4.2.8",
"typedoc-plugin-markdown": "4.2.8",
"typescript": "^5.6.2",
"typescript-json-schema": "0.64.0"
},
Expand Down
12 changes: 6 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion scripts/renderer/src/typedoc2html.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { copy, exists } from "fs-extra"
import { rm } from "fs/promises"
import * as path from "path"
import * as typedoc from "typedoc"
import * as process from "process"

async function main() {
const outputDir = "docs"
Expand Down Expand Up @@ -35,4 +36,7 @@ async function main() {
await app.generateDocs(project!, outputDir)
}

main().catch(console.error)
main().catch((e) => {
console.error(e)
process.exit(1)
})

0 comments on commit 40ca573

Please sign in to comment.