Display version in logo
This commit is contained in:
parent
edd1baa9f4
commit
b97f788d71
11
src/index.ts
11
src/index.ts
|
@ -61,11 +61,12 @@ async function masterMain() {
|
||||||
|
|
||||||
if (!program.quiet) {
|
if (!program.quiet) {
|
||||||
//#region Misskey logo
|
//#region Misskey logo
|
||||||
console.log(' _____ _ _ ');
|
const v = `v${pkg.version}`;
|
||||||
console.log('| |_|___ ___| |_ ___ _ _ ');
|
console.log(' _____ _ _ ');
|
||||||
console.log('| | | | |_ -|_ -| \'_| -_| | |');
|
console.log(' | |_|___ ___| |_ ___ _ _ ');
|
||||||
console.log('|_|_|_|_|___|___|_,_|___|_ |');
|
console.log(' | | | | |_ -|_ -| \'_| -_| | |');
|
||||||
console.log(' |___|\n');
|
console.log(' |_|_|_|_|___|___|_,_|___|_ |');
|
||||||
|
console.log(' ' + chalk.gray(v) + (' |___|\n'.substr(v.length)));
|
||||||
//#endregion
|
//#endregion
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue