Skip to content

Commit

Permalink
Output plain version number (#335)
Browse files Browse the repository at this point in the history
Fixes #334
  • Loading branch information
RyanZim committed Sep 1, 2020
1 parent e2bed8c commit 91d6ef6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 15 deletions.
14 changes: 0 additions & 14 deletions lib/args.js
Expand Up @@ -13,19 +13,6 @@ const logo = `
//_____||___*_________*___||_____//
`

const cli = require('../package.json').version
const version = chalk.bold.red(`
/|\\
// //
// //
//___*___*___//
//--*---------*--//
/|| * * ||/
// ||* v${cli} *|| //
// || * * || //
//_____||___*_________*___||_____//
`)

module.exports = require('yargs')
.usage(
`${chalk.bold.red(logo)}
Expand Down Expand Up @@ -125,7 +112,6 @@ Usage:
desc: 'Set a custom directory to look for a config file',
type: 'string',
})
.version(version)
.alias('h', 'help')
.example('$0 input.css -o output.css', 'Basic usage')
.example('$0 src/**/*.css --base src --dir build', 'Glob Pattern & output')
Expand Down
2 changes: 1 addition & 1 deletion test/misc.js
Expand Up @@ -16,7 +16,7 @@ test('--version', async (t) => {
t.falsy(version.error)

t.truthy(
version.stdout.length > 10,
version.stdout.length > 5,
'expected --version to output version info'
)
})

0 comments on commit 91d6ef6

Please sign in to comment.