UNPKG

@broadcom/endevor-bridge-for-git-for-zowe-cli

Version:

Endevor Bridge for Git plug-in for Zowe CLI

45 lines (44 loc) 1.38 kB
/** * Class to contain Bridge for Git constants * @export * @class Constants */ export declare class PluginConstants { /** * Plugin install name */ static readonly PLUGIN_PACKAGE_NAME = "@broadcom/endevor-bridge-for-git-for-zowe-cli"; /** * Display name */ static readonly PLUGIN_DISPLAY_NAME = "Endevor Bridge for Git for Zowe CLI"; /** * Plug-in name */ static readonly PLUGIN_GROUP_NAME = "endevor-bridge-for-git"; /** * Plug-in name alias */ static readonly PLUGIN_NAME_ALIAS = "ebg"; /** * Description of Plug-in */ static readonly PLUGIN_DESCRIPTION = "Use the Endevor Bridge for Git plug-in to manage your Git-Endevor mappings and build your local Git changes before synchronizing them to Endevor."; /** * Summary description of Plug-in */ static readonly PLUGIN_SUMMARY = "Interact with a Endevor Bridge for Git server"; /** * Home environment variable */ static readonly ENV_PREFIX_KEY = "endevor-bridge-for-git"; /** * Home directory */ static readonly HOME_DIR = "~/.endevor-bridge-for-git"; /** * Custom log location to prevent logging to default folder based on the package name */ static readonly LOG_LOCATION = "zowe/logs/"; static readonly LOG_FILENAME = "zowe-endevor-bridge-for-git.log"; }