Skip to content

Commit

Permalink
fix(core): update internal translations
Browse files Browse the repository at this point in the history
  • Loading branch information
tgreyuk committed Jun 24, 2024
1 parent a2a2ae2 commit ce880fd
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 26 deletions.
40 changes: 20 additions & 20 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"ts-morph": "^22.0.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typedoc": "^0.26.0",
"typedoc": "^0.26.1",
"typescript": "^5.5.2",
"unified-prettier": "^2.0.1"
}
Expand Down
6 changes: 2 additions & 4 deletions packages/typedoc-plugin-markdown/src/renderer/overrides.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@ export async function generateDocs(project: ProjectReflection, out: string) {
const start = Date.now();
await this.renderer.render(project, out);
if (this.logger.hasErrors()) {
this.logger.error(
'Documentation could not be generated due to the errors above.',
);
this.logger.error(this.i18n.docs_could_not_be_generated());
} else {
this.logger.info(`Documentation generated at ${nicePath(out)}`);
this.logger.info(this.i18n.docs_generated_at_0(nicePath(out)));
this.logger.verbose(`Markdown rendering took ${Date.now() - start}ms`);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export function comment(
[],
);

const filteredBlockTags = ['@returns', '@module'];
const filteredBlockTags = ['@returns'];

const tags = blockTags
.filter((tag) => !filteredBlockTags.includes(tag.tag))
Expand Down

0 comments on commit ce880fd

Please sign in to comment.