From 3f40130941594eafc3f90e2db244705464bda044 Mon Sep 17 00:00:00 2001 From: brandonocasey Date: Thu, 11 Apr 2019 12:54:15 -0400 Subject: [PATCH] feat: report eslint version too --- cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli.js b/cli.js index d6b6330..24b7908 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.').