make-resume
Version:
Separate data from design and build beautiful Resumes.
20 lines (18 loc) • 427 B
JavaScript
const { infoTable } = require("../cli");
const Message = require("../message");
class Configs {
constructor(mr) {
this.mr = mr;
this.config = infoTable();
this.config.push(
{ Theme: this.mr.theme.id },
{ "Theme Origin": this.mr.theme.origin },
{ "Info file": this.mr.paths.infoFile },
{ Output: this.mr.paths.output }
);
}
show() {
Message.info(this.config.toString());
}
}
module.exports = Configs;