Skip to content

Commit

Permalink
chore: do not list the extension versions
Browse files Browse the repository at this point in the history
Having extension versions listed causes too much churn.
  • Loading branch information
Jason3S committed Jan 16, 2024
1 parent 73be63c commit d3ceb64
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/gen-extension-list.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ function makeExtensionListItem(extensionInfo) {
return listItem(
paragraph([
link(extensionInfo.extensionPath + '#readme', undefined, text(extensionInfo.displayNameShort)),
text(` - ${extensionInfo.version} - ${extensionInfo.description}`),
])
text(` - ${extensionInfo.description}`),
]),
);
}

Expand All @@ -59,10 +59,10 @@ function makeMarketplaceExtensionListItem(extensionInfo) {
link(
'https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.' + extensionInfo.name,
undefined,
text(extensionInfo.displayNameShort)
text(extensionInfo.displayNameShort),
),
text(' - ' + extensionInfo.description),
])
]),
);
}

Expand Down

0 comments on commit d3ceb64

Please sign in to comment.