UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

14 lines (13 loc) 477 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.APP_RELEASE_TYPE_VALIDATIONS = void 0; exports.APP_RELEASE_TYPE_VALIDATIONS = { maxLength: { rule: 100, errorMessage: `release-type length must be 100 characters or less`, }, matchRegexp: { rule: /^$|^[A-Z0-9][a-z0-9]*$/, errorMessage: `release-type must be a single word starting with a capital letter or number, followed by lowercase`, }, };