Simplify change log in release notes; Add separate script for updating changelog.
This commit is contained in:
parent
536beba583
commit
58c6024030
8 changed files with 115 additions and 44 deletions
|
@ -1,7 +1,10 @@
|
|||
"use strict";
|
||||
|
||||
const fs = require("fs-extra");
|
||||
const parseVariantsData = require("./parse-variants-data");
|
||||
const parseLigationData = require("./ligation-data");
|
||||
const getCharMapAndSupportedLanguageList = require("./supported-languages");
|
||||
const execMain = require("../shared/execMain");
|
||||
|
||||
const version = require("../../package.json").version;
|
||||
|
||||
|
@ -9,10 +12,8 @@ const charMapPath = process.argv[2];
|
|||
const charMapItalicPath = process.argv[3];
|
||||
const charMapObliquePath = process.argv[4];
|
||||
const exportPath = process.argv[5];
|
||||
main().catch(e => {
|
||||
console.error(e);
|
||||
process.exit(1);
|
||||
});
|
||||
|
||||
execMain(main);
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
async function main() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue