UNPKG

@flowcore/cli-plugin-config

Version:
10 lines (9 loc) 439 B
import { BaseCommand } from "../../base-command.js"; export default class LoginShow extends BaseCommand { static description = "Show the configured login url"; static examples = ["<%= config.bin %> <%= command.id %>"]; async run() { this.ui.logger.info(`Configuration for profile: ${this.ui.colors.green(this.cliConfiguration.getSelectedProfile())}`); this.cliConfiguration.displayConfigTable(this.ui); } }