update the docs for version command

This commit is contained in:
Gleb Bahmutov
2017-09-05 12:23:49 -04:00
parent 844dc1fe30
commit a1a8038528
4 changed files with 17 additions and 9 deletions
+2 -2
View File
@@ -46,8 +46,8 @@ module.exports = {
.action(() => {
const versions = util.versions()
/* eslint-disable no-console */
console.log('Cypress package version', versions.package)
console.log('Cypress binary version', versions.binary)
console.log('Cypress package version:', versions.package)
console.log('Cypress binary version:', versions.binary)
/* eslint-enable no-console */
process.exit(0)
})