UNPKG

cli-training

Version:
17 lines (15 loc) 382 B
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