mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 13:47:52 +00:00
12 lines
263 B
CoffeeScript
12 lines
263 B
CoffeeScript
packageJSON = require('../../package.json')
|
|
|
|
exports.version =
|
|
signature: 'version'
|
|
description: 'output the version number'
|
|
help: '''
|
|
Display the Resin CLI version.
|
|
'''
|
|
action: (params, options, done) ->
|
|
console.log(packageJSON.version)
|
|
return done()
|