Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Output plain version number #335

Merged
merged 1 commit into from
Sep 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 0 additions & 14 deletions lib/args.js
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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'
)
})