@graphql-hive/cli
Version:
A CLI util to manage and control your GraphQL Hive
20 lines • 608 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const base_command_1 = tslib_1.__importDefault(require("../../base-command"));
class GetConfig extends base_command_1.default {
async run() {
const { args } = await this.parse(GetConfig);
console.dir(this._userConfig.get(args.key));
}
}
GetConfig.description = 'prints specific cli configuration';
GetConfig.args = [
{
name: 'key',
required: true,
description: 'config key',
},
];
exports.default = GetConfig;
//# sourceMappingURL=get.js.map