From ea81d3a3299edbaae1425158ac21814fa608bd6f Mon Sep 17 00:00:00 2001 From: Brandon Casey Date: Thu, 11 Apr 2019 17:22:14 -0400 Subject: [PATCH] feat: report eslint version too (#54) --- cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli.js b/cli.js index 6da6270..1e02e51 100755 --- a/cli.js +++ b/cli.js @@ -12,7 +12,7 @@ const getConfig = require('./get-config'); const pkg = require(path.join(__dirname, 'package.json')); commander. - version(pkg.version). + version('videojs-standard: ' + pkg.version + os.EOL + 'eslint: ' + CLIEngine.version). option('-e, --errors', 'Produces a report that only includes errors; not warnings.'). option('-w, --warnings', 'Produces a report that only includes warnings; not errors.'). option('--fix, --format', 'Formats/fixes files where possible to comply with videojs-standard.').