From a615260bde82efa05e6cc5dca9105aeb19cabd00 Mon Sep 17 00:00:00 2001 From: mattdesl Date: Wed, 9 Sep 2015 11:34:37 -0400 Subject: [PATCH] newline at end of version command --- bin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin.js b/bin.js index c3c49cc..514421b 100755 --- a/bin.js +++ b/bin.js @@ -23,7 +23,7 @@ const argv = minimist(process.argv.slice(2), { var input = '' if (argv.version) { const version = require('./package.json').version - process.stdout.write('v' + version) + process.stdout.write('v' + version + '\n') process.exit(0) } if (argv.help) return help()