cli-training
Version:
get to know amir with `npx amir`
17 lines (15 loc) • 382 B
JavaScript
import welcome from 'cli-welcome';
import pkgJSON from '../package.json' with { type: "json" };
const init = () => {
welcome({
title: `Amir Hoseini`,
tagLine: `nice to meet you`,
bgColor: `#FADC00`,
description: pkgJSON.description,
color: `#000000`,
bold: true,
clear: true,
version: pkgJSON.version,
});
};
export default init