Skip to content

Commit

Permalink
Bump typedoc to 0.26.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Drarig29 committed Jun 28, 2024
1 parent c1d32d3 commit ef0c0df
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
"typedoc"
],
"peerDependencies": {
"typedoc": "0.25.x"
"typedoc": "0.26.x"
},
"devDependencies": {
"@types/node": "^18.15.11",
"typescript": "^5.0.4"
"typescript": "^5.5.2"
}
}
}
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export function load(app: Application) {
const options = pluginOptions(app);

app.renderer.on(PageEvent.END, onPageRendered.bind(options));
app.renderer.once(RendererEvent.END, onRenderFinished.bind(options));
app.renderer.on(RendererEvent.END, onRenderFinished.bind(options));
}

function onPageRendered(this: PluginOptionsGetter, page: PageEvent) {
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"isolatedModules": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"strict": true,
"sourceMap": true,
"outDir": "dist"
Expand Down

0 comments on commit ef0c0df

Please sign in to comment.