Add node version to version command output

This commit is contained in:
Juan Cruz Viotti 2015-02-11 15:30:49 -04:00
parent 9ce8193c1f
commit 7c836132ad

View File

@ -4,4 +4,5 @@ exports.version =
signature: 'version'
description: 'output the version number'
action: ->
console.log(packageJSON.version)
console.log("#{packageJSON.name}: #{packageJSON.version}")
console.log("node: #{process.version}")