UNPKG

youare

Version:

displays github activity of user

20 lines (17 loc) 467 B
import unhandled from 'cli-handle-unhandled'; import welcome from 'cli-welcome'; import { getPackageJson } from 'get-package-json-file'; export default async ({ clear = true }) => { unhandled(); const pkgJson = await getPackageJson(`./../package.json`); welcome({ title: `github-activity`, tagLine: `by Prabhat Deshmukh`, description: pkgJson.description, version: pkgJson.version, bgColor: '#A699EA', color: '#000000', bold: true, clear }); };