-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds Code Files in TypeScript #3321
Conversation
56cc5e9
to
154de67
Compare
ffcc816
to
e682053
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this.
We also probably need to
- double check failing CI check
- add changelog entry
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rkodev CI seems to be failing, can you have a look before we review please?
Also, sorry about that, my PR about auto-generated comments was merged ahead of yours, resulting in conflicts.
We can keep most of my code changes, as the comments are only added for the elements when the parent is a code namespace (to avoid duplication). You'll only need to replicate the changes for code file as well.
src/Kiota.Builder/Writers/TypeScript/CodeClassDeclarationWriter.cs
Outdated
Show resolved
Hide resolved
src/Kiota.Builder/Writers/TypeScript/TypeScriptRelativeImportManager.cs
Outdated
Show resolved
Hide resolved
c4d4fee
to
727a414
Compare
src/Kiota.Builder/Writers/TypeScript/CodeFileDeclarationWriter.cs
Outdated
Show resolved
Hide resolved
src/Kiota.Builder/Writers/TypeScript/CodeFileDeclarationWriter.cs
Outdated
Show resolved
Hide resolved
Co-authored-by: Vincent Biret <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for making the changes!
Kudos, SonarCloud Quality Gate passed! |
fixes #2116
Adds code files that groups factories , serializers, deserializers and models into 1 file.
Sample output microsoft/kiota-samples#3644