How to use the colors-cli.green_bt function in colors-cli

To help you get started, we’ve selected a few colors-cli examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github zoeDylan / jobTemplate / gulpfile.js View on Github external
function clTP(event, file, dir) {
    let
        cEvent = color.green_bt,
        cFile = color.green;

    console.log('\n\n【' + new Date().toLocaleDateString() + ' ' + new Date().toLocaleTimeString() + '】' +
        cEvent(event + ': ') + cFile(file));
    dir ? clTP(event + ' dir', dir) : '';
}