Skip to content

Commit 31e9c98

Browse files
authored
Merge pull request #72 from IgniteUI/update-dependencies
Update dependencies
2 parents 12e8a46 + 94825bc commit 31e9c98

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

components/convert-component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,9 @@ export class ConvertComponent {
160160
}
161161

162162
const getData = this.getCommentInfo(reflection);
163-
this.factoryInstance.appendAttribute(this.jsonObjectName, reflection.kind, reflection.name, getData);
163+
if (getData) {
164+
this.factoryInstance.appendAttribute(this.jsonObjectName, reflection.kind, reflection.name, getData);
165+
}
164166
break;
165167
case ReflectionKind.Function:
166168
const funcData = this.getCommentInfo(reflection.signatures[0]);

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@
2727
"devDependencies": {
2828
"@types/node": "^18.11.0",
2929
"typedoc": "^0.23.21",
30-
"typescript": "^4.8.4"
30+
"typescript": "^4.9.5"
3131
}
3232
}

0 commit comments

Comments
 (0)