Sha256: 413a888e56412ba96676741737916595d72393dd686dcb3a8cc43a707172d1cc
Contents?: true
Size: 497 Bytes
Versions: 69
Compression:
Stored size: 497 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 = { silly: 0, input: 1, verbose: 2, prompt: 3, debug: 4, info: 5, data: 6, help: 7, warn: 8, error: 9 }; cliConfig.colors = { silly: 'magenta', input: 'grey', verbose: 'cyan', prompt: 'grey', debug: 'blue', info: 'green', data: 'grey', help: 'cyan', warn: 'yellow', error: 'red' };
Version data entries
69 entries across 69 versions & 4 rubygems