Sha256: 10ec81f7a8bd4bc95eff58c46b388f34a3953f5d81bb93f30d067c79305dc679
Contents?: true
Size: 499 Bytes
Versions: 10
Compression:
Stored size: 499 Bytes
Contents
/* * cli-config.js: Config that conform to commonly used CLI logging levels. * * (C) 2010 Charlie Robbins * MIT LICENCE * */ var cliConfig = exports; cliConfig.levels = { error: 0, warn: 1, help: 2, data: 3, info: 4, debug: 5, prompt: 6, verbose: 7, input: 8, silly: 9, }; cliConfig.colors = { error: 'red', warn: 'yellow', help: 'cyan', data: 'grey', info: 'green', debug: 'blue', prompt: 'grey', verbose: 'cyan', input: 'grey', silly: 'magenta' };
Version data entries
10 entries across 10 versions & 1 rubygems