@jwalab/minilab
Version:
Minilab is a mini development environment for the JWA Platform
21 lines (19 loc) • 453 B
JavaScript
const chalk = require("chalk");
const figlet = require("figlet");
const gradient = require("gradient-string");
const package = require("../package.json");
module.exports = {
showBanner() {
console.log(
chalk`${gradient.pastel(
figlet.textSync("minilab", {
font: "DOS Rebel",
})
)}
${package.author.name} - v${
package.version
}
`
);
},
};