Skip to content

Commit eeff4d8

Browse files
committed
fix
1 parent fc26715 commit eeff4d8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33974,7 +33974,7 @@ function formatTable(packages) {
3397433974
|------|---------|----|`;
3397533975
return `${header}
3397633976
${packages.map(
33977-
(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) |`
33977+
(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}/) |`
3397833978
).join("\n")}`;
3397933979
}
3398033980
async function upsertComment(options) {

src/github.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ function formatTable(packages: PublishedPackage[]): string {
1010
return `${header}\n${packages
1111
.map(
1212
(t) =>
13-
`| \`${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) |`
13+
`| \`${t.name}\` | \`${t.version}\` | [npm ↗︎](https://www.npmjs.com/package/${t.name}/v/${t.version}) [unpkg ↗︎](https://unpkg.com/browse/${t.name}@${t.version}/) |`
1414
)
1515
.join("\n")}`;
1616
}

0 commit comments

Comments
 (0)