-
Notifications
You must be signed in to change notification settings - Fork 710
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
Certain modifier tags no longer included in json output since v0.25 #2802
Comments
Those tags are all modifier tags, so shouldn't appear in the blockTags array. They appear under the modifierTags property. https://typedoc.org/documents/Tags.html#modifier-tags |
Apologies. But the tags are nowhere - they aren't in any |
The issue is with this commit which adds "cascading" modifierTags. If I remove the default modifierTags and specify an empty array in config, then all is well. I have a workaround, but this does seem like a bug. |
Ah shoot, yes, this is a bug. Cascading tags shouldn't recurse into types, which is what's happening here. |
Expected Behavior
@alpha
tags (tested@beta
and@experimental
tags with the same result) used to document types should be available in themodifierTags
array of the corresponding node in json output produced by TypeDoc.Actual Behavior
Since version 0.25, the above behavior is no longer the case.
Steps to reproduce the bug
Consider the following:
Will produce the following output in versions <0.26:
stackblitz link run
npm run docs
But the following output in versions >=0.26
stackblitz link run
npm run docs
Environment
The text was updated successfully, but these errors were encountered: