UNPKG

@sap/cli-core

Version:

Command-Line Interface (CLI) Core Module

13 lines (12 loc) 914 B
import { CLI_DEPRECATED, CLI_DEPRECATION_MESSAGE, CLI_DESCRIPTION, CLI_DISCOVERY_PATHS, CLI_GENERIC_OPTIONS_HELP, CLI_NAME, CLI_PACKAGE_NAME, CLI_SAP_HELP, CLI_SUPPORTED_AUTHENTICATION_METHODS, CLI_VERSION, } from "../constants.js"; import { get } from "./index.js"; export const getName = () => get()[CLI_NAME]; export const getPackageName = () => get()[CLI_PACKAGE_NAME]; export const getDescription = () => get()[CLI_DESCRIPTION]; export const getDiscoveryPaths = () => get()[CLI_DISCOVERY_PATHS]; export const getSapHelp = () => get()[CLI_SAP_HELP]; export const getAuthenticationMethods = () => get()[CLI_SUPPORTED_AUTHENTICATION_METHODS]; export const getVersion = () => get()[CLI_VERSION]; export const isDeprecated = () => get()[CLI_DEPRECATED] || false; export const getDeprecationMessage = () => get()[CLI_DEPRECATION_MESSAGE]; export const getGenericOptionsHelp = () => get()[CLI_GENERIC_OPTIONS_HELP];