Move package list link in the release note to the front
This commit is contained in:
parent
9ef89d645c
commit
80333556b5
1 changed files with 4 additions and 1 deletions
|
@ -38,7 +38,7 @@ export default async function main(argv) {
|
||||||
const out = new MdCol("Release-Note");
|
const out = new MdCol("Release-Note");
|
||||||
const baseUrl = `https://github.com/be5invis/Iosevka/blob/v${argv.version}/doc`;
|
const baseUrl = `https://github.com/be5invis/Iosevka/blob/v${argv.version}/doc`;
|
||||||
const releaseUrl = `https://github.com/be5invis/Iosevka/releases/download/v${argv.version}`;
|
const releaseUrl = `https://github.com/be5invis/Iosevka/releases/download/v${argv.version}`;
|
||||||
await GenerateChangeList(argv, out);
|
|
||||||
out.log(
|
out.log(
|
||||||
`<table>\n` +
|
`<table>\n` +
|
||||||
`<tr><td align="center"><h1>` +
|
`<tr><td align="center"><h1>` +
|
||||||
|
@ -49,5 +49,8 @@ export default async function main(argv) {
|
||||||
`</td></tr>\n` +
|
`</td></tr>\n` +
|
||||||
`</table>\n`,
|
`</table>\n`,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
await GenerateChangeList(argv, out);
|
||||||
|
|
||||||
await fs.promises.writeFile(argv.outputPath, out.data);
|
await fs.promises.writeFile(argv.outputPath, out.data);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue