2019-06-24 15:51:07 +00:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright 2019 Balena Ltd.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-03-19 08:45:57 +00:00
|
|
|
import { flags } from '@oclif/command';
|
|
|
|
import Command from '../command';
|
2020-05-04 14:57:23 +00:00
|
|
|
import { stripIndent } from '../utils/lazy';
|
2019-06-24 15:51:07 +00:00
|
|
|
|
|
|
|
interface FlagsDef {
|
|
|
|
all?: boolean;
|
|
|
|
json?: boolean;
|
2019-08-09 08:06:17 +00:00
|
|
|
help: void;
|
2019-06-24 15:51:07 +00:00
|
|
|
}
|
|
|
|
|
2019-09-10 22:51:53 +00:00
|
|
|
export interface JsonVersions {
|
|
|
|
'balena-cli': string;
|
|
|
|
'Node.js': string;
|
|
|
|
}
|
|
|
|
|
2019-06-24 15:51:07 +00:00
|
|
|
export default class VersionCmd extends Command {
|
|
|
|
public static description = stripIndent`
|
2020-09-18 14:35:36 +00:00
|
|
|
Display version information for balenaCLI and/or Node.js.
|
2019-06-24 15:51:07 +00:00
|
|
|
|
2020-09-18 14:35:36 +00:00
|
|
|
Display version information for balenaCLI and/or Node.js.
|
2020-01-03 23:13:20 +00:00
|
|
|
|
|
|
|
The --json option is recommended when scripting the output of this command,
|
|
|
|
because the JSON format is less likely to change and it better represents
|
|
|
|
data types like lists and empty strings. The 'jq' utility may be helpful
|
|
|
|
in shell scripts (https://stedolan.github.io/jq/manual/).
|
2020-09-04 14:34:34 +00:00
|
|
|
|
|
|
|
This command can also be invoked with 'balena --version' or 'balena -v'.
|
2019-06-24 15:51:07 +00:00
|
|
|
`;
|
|
|
|
public static examples = [
|
|
|
|
'$ balena version',
|
|
|
|
'$ balena version -a',
|
|
|
|
'$ balena version -j',
|
2020-09-04 14:34:34 +00:00
|
|
|
`$ balena --version`,
|
|
|
|
`$ balena -v`,
|
2019-06-24 15:51:07 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
public static usage = 'version';
|
|
|
|
|
2019-08-09 08:06:17 +00:00
|
|
|
public static flags: flags.Input<FlagsDef> = {
|
2019-06-24 15:51:07 +00:00
|
|
|
all: flags.boolean({
|
|
|
|
char: 'a',
|
|
|
|
default: false,
|
|
|
|
description:
|
|
|
|
'include version information for additional components (Node.js)',
|
|
|
|
}),
|
|
|
|
json: flags.boolean({
|
|
|
|
char: 'j',
|
|
|
|
default: false,
|
|
|
|
description:
|
|
|
|
'output version information in JSON format for programmatic use',
|
|
|
|
}),
|
|
|
|
help: flags.help({ char: 'h' }),
|
|
|
|
};
|
|
|
|
|
|
|
|
public async run() {
|
|
|
|
const { flags: options } = this.parse<FlagsDef, {}>(VersionCmd);
|
2019-09-10 22:51:53 +00:00
|
|
|
const versions: JsonVersions = {
|
2019-06-24 15:51:07 +00:00
|
|
|
'balena-cli': (await import('../../package.json')).version,
|
|
|
|
'Node.js':
|
|
|
|
process.version && process.version.startsWith('v')
|
|
|
|
? process.version.slice(1)
|
|
|
|
: process.version,
|
|
|
|
};
|
|
|
|
if (options.json) {
|
|
|
|
console.log(JSON.stringify(versions, null, 4));
|
|
|
|
} else {
|
|
|
|
if (options.all) {
|
|
|
|
console.log(`balena-cli version "${versions['balena-cli']}"`);
|
|
|
|
console.log(`Node.js version "${versions['Node.js']}"`);
|
|
|
|
} else {
|
|
|
|
// backwards compatibility
|
|
|
|
console.log(versions['balena-cli']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|