Skip to content

Commit

Permalink
chore(api-extractor): change ae-incompatible-release-tags to warning
Browse files Browse the repository at this point in the history
A lot of the output from Stencil omit doc block comments, which makes some of the types appear
public even if they are marked as beta. This in turn generates the error
`ae-incompatible-release-tags`, which would have been nice to have but it seems not to be fully
compatible with what Stencil generates.
  • Loading branch information
jgroth authored and Kiarokh committed Mar 27, 2024
1 parent 6e4cd01 commit 803a038
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api-extractor.json
Original file line number Diff line number Diff line change
Expand Up @@ -400,8 +400,8 @@
"addToApiReportFile": false
},
"ae-incompatible-release-tags": {
"logLevel": "error",
"addToApiReportFile": false
"logLevel": "warning",
"addToApiReportFile": true
},
"ae-internal-missing-underscore": {
"logLevel": "error",
Expand Down
2 changes: 2 additions & 0 deletions etc/lime-elements.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -905,6 +905,8 @@ namespace JSX_2 {
"limel-dock": LimelDock;
// (undocumented)
"limel-dock-button": LimelDockButton;
// Warning: (ae-incompatible-release-tags) The symbol ""limel-dynamic-label"" is marked as @public, but its signature references "JSX_2" which is marked as @beta
//
// (undocumented)
"limel-dynamic-label": LimelDynamicLabel;
// (undocumented)
Expand Down

0 comments on commit 803a038

Please sign in to comment.