-
Notifications
You must be signed in to change notification settings - Fork 115
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
feat: Allow multiple types to set #[ts(export_to = "...")]
to the same file
#316
Merged
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
dfaa802
Allow for multiple types to be exported to the same file
escritorio-gustavo 784eecd
Allow for multiple types to be exported to the same file
escritorio-gustavo f4f59e9
Merge remote-tracking branch 'refs/remotes/origin/export_same_file'
escritorio-gustavo 294126c
Prevent duplication
escritorio-gustavo 7312fa1
If types exported to the same file depend on each other, they should …
escritorio-gustavo 4dc1c17
Fix import-esm case
escritorio-gustavo 892b11b
Fix import-esm case
escritorio-gustavo 27832ee
Change read_exact for seek
escritorio-gustavo c7b170e
Remove unneded clone
escritorio-gustavo 8d32a0e
Merge branch 'main' into export_same_file
escritorio-gustavo fbe8e72
Merge branch 'main' into export_same_file
escritorio-gustavo 939041e
Remove duplicate declaration
escritorio-gustavo a3ed6d8
Reduce amount of syscalls and memory allocations
escritorio-gustavo 121ac37
Replace negated condition with guard clause
escritorio-gustavo 70a3c12
Merge branch 'main' into export_same_file
escritorio-gustavo 8e3e59f
Fix compiler error
escritorio-gustavo 5f41c0d
Merge branch 'main' into export_same_file
gustavo-shigueo 9db3a90
Merge branch 'main' into export_same_file
gustavo-shigueo b80240e
Fix double blank line
gustavo-shigueo 4344480
Make test more robust by checking if all exports are in file
gustavo-shigueo 6a962c0
Update CHANGELOG
gustavo-shigueo a5a3fba
Failure report
gustavo-shigueo cd37d20
Account for the format feature
gustavo-shigueo 04c1ec4
Make type order deterministic
gustavo-shigueo 9db2c1c
Ignore JSDoc when sorting declarations
gustavo-shigueo 419044f
Only consider type name when sorting declarations
gustavo-shigueo 8a43254
Fix slice index
gustavo-shigueo bc10807
Get type name without index math
gustavo-shigueo 25434df
Attempt to fix duplicated NOTE
gustavo-shigueo dedfba5
Guarantee that the type name will be used
gustavo-shigueo ad1b46e
Fix double header error
gustavo-shigueo d124d7b
Allocate less space for buffer by having the note from the original f…
gustavo-shigueo 6ec0871
Merge branch 'main' into export_same_file
gustavo-shigueo a107e97
Merge branch 'main' into export_same_file
gustavo-shigueo 5c889c9
Merge branch 'main' into export_same_file
gustavo-shigueo 5374370
Revert rename to avoid conflicts with other branches
gustavo-shigueo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This change does nothing, it was leftover from when I was testing something else