ionic
Version:
A tool for creating and developing Ionic Framework mobile apps.
19 lines (18 loc) • 615 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const command_1 = require("../lib/command");
class VersionCommand extends command_1.Command {
async getMetadata() {
return {
name: 'version',
type: 'global',
summary: 'Returns the current CLI version',
groups: ["hidden" /* HIDDEN */],
};
}
async run(inputs, options) {
// can't use logger--see https://github.com/ionic-team/ionic-cli/issues/2507
process.stdout.write(this.env.ctx.version + '\n');
}
}
exports.VersionCommand = VersionCommand;
;