Skip to content

Commit

Permalink
fix: ts v5.5.4 incompatiblity #2662
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Jul 24, 2024
1 parent e8a4726 commit 137a0e6
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 49 deletions.
88 changes: 41 additions & 47 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 @@ -66,7 +66,7 @@
"release-it": "17.6.0",
"ts-jest": "29.2.3",
"ts-node": "10.9.2",
"typescript": "5.5.3"
"typescript": "5.5.4"
},
"peerDependencies": {
"typescript": ">=4.8.2"
Expand Down
2 changes: 1 addition & 1 deletion src/utils/metadata.manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export class MetadataManager {
if (node) {
result.push(node);
if (node.getChildCount(sourceFile) >= 0) {
nodes.unshift(...node.getChildren());
nodes.unshift(...node.getChildren(sourceFile));
}
}
}
Expand Down

0 comments on commit 137a0e6

Please sign in to comment.