all files / src/commands/ common-yargs.js

0% Statements 0/6
100% Branches 0/0
0% Functions 0/1
0% Lines 0/5
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);
}