Skip to content
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

Reject internal tag on private decls, strip comments from private decls in dtsBundler #58869

Merged
merged 4 commits into from
Jun 18, 2024

Conversation

jakebailey
Copy link
Member

As exposed by #58187, private declarations do not compose with @internal when stripInternal is done via as separate tool.

Keeping the comments from private properties is undesirable as it leaks info to the declaration files that is meaningless without type info.

But, if we remove comments from private properties, and those private properties are marked as @internal, that info is removed too. So, anyone post-processing dts files to do stripping similar to stripInternal will break.

It seems to me that we just shouldn't tag anything already private as @internal. That will mean that we include more private properties in our declaration files, but this is nothing new, it's just that a small number of props got both private and @internal, which feels unintended.

So, this PR also uses removeAllComments in dtsBundler.mjs to drop all private comments too, at least until #58187 is out and has the same effect.

@jakebailey jakebailey requested a review from sheetalkamat June 14, 2024 22:40
@typescript-bot typescript-bot added Author: Team For Uncommitted Bug PR for untriaged, rejected, closed or missing bug labels Jun 14, 2024
@typescript-bot
Copy link
Collaborator

Looks like you're introducing a change to the public API surface area. If this includes breaking changes, please document them on our wiki's API Breaking Changes page.

Also, please make sure @DanielRosenwasser and @RyanCavanaugh are aware of the changes, just as a heads up.

Copy link
Member

@sheetalkamat sheetalkamat left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is ok but i think we probably should change bot to see if the diff with API is only private addition its not really protocol or Public API change to reduce the noise

@jakebailey
Copy link
Member Author

Yeah, outputting a baseline-only dts file which omits private props sounds like a good idea.

@jakebailey jakebailey merged commit 867476e into microsoft:main Jun 18, 2024
28 checks passed
@jakebailey jakebailey deleted the private-jsdoc-internal branch June 18, 2024 23:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Author: Team For Uncommitted Bug PR for untriaged, rejected, closed or missing bug
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

3 participants