Simplify change log in release notes; Add separate script for updating changelog.

This commit is contained in:
be5invis 2020-10-23 20:49:52 -07:00
parent 536beba583
commit 58c6024030
8 changed files with 115 additions and 44 deletions

View file

@ -0,0 +1,10 @@
module.exports = function (main) {
setTimeout(
() =>
main().catch(e => {
console.error(e);
process.exit(1);
}),
0
);
};