UNPKG

@cto.ai/ops

Version:

💻 CTO.ai - The CLI built for Teams 🚀

26 lines (25 loc) • 1.21 kB
/** * @author: JP Lew (jp@cto.ai) * @date: Thursday, 16th May 2019 10:22:25 am * @lastModifiedBy: JP Lew (jp@cto.ai) * @lastModifiedTime: Friday, 13th September 2019 1:13:17 pm * @copyright (c) 2019 CTO.ai */ export { getLatestVersion } from './get-latest-version'; export { parseYaml } from './yamlParser'; export { asyncPipe, _trace } from './asyncPipe'; export { validateEmail, validChars, validCharsTeamName, validVersionChars, } from './validate'; export { getOpImageTag, getOpUrl, PUBLIC_OPS_PREFIX } from './getOpUrl'; export { splitNameAndVersion } from './opName'; export { terminalText } from './terminalText'; export { pluralize } from './stringUtils'; export { genLogsURL } from './runUtils'; export { writeConfig, readConfig, clearConfig, formatConfigObject, } from './config'; export * from './ports'; export declare const KEY_REGEX: RegExp; export declare const INVALID_YAML_LIST_ELEMENT: RegExp; export declare const ENVS_WRONG_INDENTATION_WITH_VALUE: RegExp; export declare const ENVS_WRONG_INDENTATION_WITHOUT_VALUE: RegExp; export declare const PR_LABELED_EQUAL_REGEX: RegExp; export declare const PULL_REQUEST_LABELED = "pull_request.labeled"; export declare const LINE_BREAK = "\n";