afif
Version:
Get to know me through npm
20 lines (17 loc) • 424 B
JavaScript
const pkgJSON = require('../package.json')
const unhandle = require('cli-handle-unhandled')
const welcome = require('cli-welcome')
module.exports = () => {
// unhadled exceptions
unhandle()
welcome({
title: `Afif Ahmed`,
tagLine: `Hello folks`,
description: "Get to know me through npm",
version: pkgJSON.version,
bgColor: `#FADC00`,
color: `#000000`,
bold: true,
clear: true,
})
}