UNPKG

wooff

Version:

Cli tool to check and update dependencies.

18 lines (16 loc) 402 B
const welcome = require('cli-welcome'); const pkg = require('./../package.json'); const unhandled = require('cli-handle-unhandled'); module.exports = ({ clear = true }) => { unhandled(); welcome({ title: `dependancy-updater`, tagLine: `by Shashwat Gupta (Shashtag)`, description: pkg.description, version: pkg.version, bgColor: '#36BB09', color: '#000000', bold: true, clear }); };