Skip to content

Commit

Permalink
chore: minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideMininni-Fincons committed Oct 23, 2024
1 parent 23a05fa commit 4d0a77f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/manifest/custom-elements-manifest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function createManifestConfig(library = '') {

if (node.kind === ts.SyntaxKind.ClassDeclaration) {
node.jsDoc?.forEach((doc) => {
doc?.tags?.forEach((tag) => {
doc.tags?.forEach((tag) => {
// eslint-disable-next-line lyne/local-name-rule
if (tag.tagName.getText() === overrideTypeKey) {
const [memberName, memberOverrideType] = tag.comment.split(' - ');
Expand Down Expand Up @@ -90,8 +90,8 @@ export function createManifestConfig(library = '') {
};
}
});
delete declaration[overrideTypeKey];
}
delete declaration[overrideTypeKey];

for (const member of declaration.members) {
if (member.name.startsWith('_') && member.default) {
Expand Down

0 comments on commit 4d0a77f

Please sign in to comment.