forgejo-helm/tools/changelog.mjs

9 lines
232 B
JavaScript
Raw Normal View History

2024-09-12 06:31:14 +00:00
import { getChangelog } from './changelog/util.js';
2023-01-04 15:00:59 +00:00
import fs from 'node:fs';
2023-01-04 15:00:59 +00:00
const file = process.argv[3]
? fs.createWriteStream(process.argv[3])
: process.stdout;
2024-09-25 08:49:06 +00:00
getChangelog(process.argv[2], !!process.argv[2]).pipe(file);