@digital-blueprint/greenlight-app
Version:
[GitHub Repository](https://github.com/digital-blueprint/greenlight-app) | [npmjs package](https://www.npmjs.com/package/@digital-blueprint/greenlight-app) | [Unpkg CDN](https://unpkg.com/browse/@digital-blueprint/greenlight-app/) | [Greenlight Bundle](ht
18 lines (16 loc) • 391 B
JavaScript
const welcome = require('cli-welcome');
const pkg = require('./../package.json');
const unhandled = require('cli-handle-unhandled');
module.exports = ({ clear = true }) => {
unhandled();
welcome({
title: `greenlight-bench`,
tagLine: `by Patrizio Bekerle`,
description: pkg.description,
version: pkg.version,
bgColor: '#e4154b',
color: '#000000',
bold: true,
clear
});
};