| 1 2 3 4 5 6 7 8 9 10 | import chalk from 'chalk'; import yargs from 'yargs'; import { version } from '../../package.json'; export default function appendCommon() { yargs.usage(chalk.magenta(`BlessCSS v${version}`) + ` - Tools to ensure CSS files meet IE 6-9 selector limit restrictions.`) .epilogue('For additional information see http://blesscss.com') .wrap(null); } |