Merge pull request #4717 from thelounge/changelog
Inline logger into changelog script
This commit is contained in:
commit
b408843ff1
@ -53,13 +53,38 @@ const got = require("got");
|
|||||||
const dayjs = require("dayjs");
|
const dayjs = require("dayjs");
|
||||||
const semver = require("semver");
|
const semver = require("semver");
|
||||||
const util = require("util");
|
const util = require("util");
|
||||||
const log = require("../server/log");
|
|
||||||
const packageJson = require("../package.json");
|
const packageJson = require("../package.json");
|
||||||
let token = process.env.CHANGELOG_TOKEN;
|
let token = process.env.CHANGELOG_TOKEN;
|
||||||
|
|
||||||
const readFile = util.promisify(fs.readFile);
|
const readFile = util.promisify(fs.readFile);
|
||||||
const writeFile = util.promisify(fs.writeFile);
|
const writeFile = util.promisify(fs.writeFile);
|
||||||
|
|
||||||
|
function timestamp() {
|
||||||
|
const datetime = new Date().toISOString().split(".")[0].replace("T", " ");
|
||||||
|
|
||||||
|
return colors.dim(datetime);
|
||||||
|
}
|
||||||
|
|
||||||
|
const log = {
|
||||||
|
/* eslint-disable no-console */
|
||||||
|
error(...args) {
|
||||||
|
console.error(timestamp(), colors.red("[ERROR]"), ...args);
|
||||||
|
},
|
||||||
|
warn(...args) {
|
||||||
|
console.error(timestamp(), colors.yellow("[WARN]"), ...args);
|
||||||
|
},
|
||||||
|
info(...args) {
|
||||||
|
console.log(timestamp(), colors.blue("[INFO]"), ...args);
|
||||||
|
},
|
||||||
|
debug(...args) {
|
||||||
|
console.log(timestamp(), colors.green("[DEBUG]"), ...args);
|
||||||
|
},
|
||||||
|
raw(...args) {
|
||||||
|
console.log(...args);
|
||||||
|
},
|
||||||
|
/* eslint-enable no-console */
|
||||||
|
};
|
||||||
|
|
||||||
const changelogPath = path.resolve(__dirname, "..", "CHANGELOG.md");
|
const changelogPath = path.resolve(__dirname, "..", "CHANGELOG.md");
|
||||||
|
|
||||||
// CLI argument validations
|
// CLI argument validations
|
||||||
|
Loading…
Reference in New Issue
Block a user