sammyteahan
Version:
Personal bio brought to you by `npx sammyteahan`
16 lines (14 loc) • 338 B
JavaScript
const welcome = require('cli-welcome');
const pkgJSON = require('./../package.json');
module.exports = () => {
welcome({
title: 'Sammy Teahan',
tagLine: 'Hi there! 👋',
description: pkgJSON.description,
version: pkgJSON.version,
bgColor: '#2ecc71',
color: '#000000',
bold: true,
clear: true,
});
};