diff --git a/scripts/changelog.ts b/scripts/changelog.ts index 81607b78..6e5d2eef 100644 --- a/scripts/changelog.ts +++ b/scripts/changelog.ts @@ -72,5 +72,6 @@ export async function getFunctionContributors() { const result = await Promise.all(functions.map(async (i) => { return [i.name, await getContributorsAt(`packages/${i.package}/${i.name}`)] as const })) + console.log('查看贡献者列表', Object.fromEntries(result.slice(0, 10))) return Object.fromEntries(result) }