Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dobromirts committed May 18, 2023
1 parent 12e8a46 commit 94825bc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
4 changes: 3 additions & 1 deletion components/convert-component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,9 @@ export class ConvertComponent {
}

const getData = this.getCommentInfo(reflection);
this.factoryInstance.appendAttribute(this.jsonObjectName, reflection.kind, reflection.name, getData);
if (getData) {
this.factoryInstance.appendAttribute(this.jsonObjectName, reflection.kind, reflection.name, getData);
}
break;
case ReflectionKind.Function:
const funcData = this.getCommentInfo(reflection.signatures[0]);
Expand Down
14 changes: 7 additions & 7 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 @@ -27,6 +27,6 @@
"devDependencies": {
"@types/node": "^18.11.0",
"typedoc": "^0.23.21",
"typescript": "^4.8.4"
"typescript": "^4.9.5"
}
}

0 comments on commit 94825bc

Please sign in to comment.