Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha committed Aug 4, 2022
1 parent fc26715 commit eeff4d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33974,7 +33974,7 @@ function formatTable(packages) {
|------|---------|----|`;
return `${header}
${packages.map(
(t) => `| \`${t.name}\` | \`${t.version}\` | [npm \u2197\uFE0E](https://www.npmjs.com/package/${t.name}/v/${t.version}) [unpkg \u2197\uFE0E](https://unpkg.com/browse/${t.name}@${t.version}/) ![npm bundle size](https://img.shields.io/bundlephobia/min/${t.name}/${t.version}?label=bundle%20size) |`
(t) => `| \`${t.name}\` | \`${t.version}\` | [npm \u2197\uFE0E](https://www.npmjs.com/package/${t.name}/v/${t.version}) [unpkg \u2197\uFE0E](https://unpkg.com/browse/${t.name}@${t.version}/) |`
).join("\n")}`;
}
async function upsertComment(options) {
Expand Down
2 changes: 1 addition & 1 deletion src/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function formatTable(packages: PublishedPackage[]): string {
return `${header}\n${packages
.map(
(t) =>
`| \`${t.name}\` | \`${t.version}\` | [npm ↗︎](https://www.npmjs.com/package/${t.name}/v/${t.version}) [unpkg ↗︎](https://unpkg.com/browse/${t.name}@${t.version}/) ![npm bundle size](https://img.shields.io/bundlephobia/min/${t.name}/${t.version}?label=bundle%20size) |`
`| \`${t.name}\` | \`${t.version}\` | [npm ↗︎](https://www.npmjs.com/package/${t.name}/v/${t.version}) [unpkg ↗︎](https://unpkg.com/browse/${t.name}@${t.version}/) |`
)
.join("\n")}`;
}
Expand Down

0 comments on commit eeff4d8

Please sign in to comment.