UNPKG

growthbook

Version:

The GrowthBook command-line interface (CLI) for working with the GrowthBook A/B testing, feature flagging, and experimentation platform

20 lines (19 loc) 747 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DEFAULT_GROWTHBOOK_PROFILE = exports.GROWTHBOOK_APP_FEATURES_FILENAME = exports.DEFAULT_GROWTHBOOK_TYPES_DESTINATION = exports.DEFAULT_GROWTHBOOK_BASE_URL = void 0; /** * The URL the CLI will be running against. */ exports.DEFAULT_GROWTHBOOK_BASE_URL = 'https://api.growthbook.io'; /** * Default generated directory for feature definition types */ exports.DEFAULT_GROWTHBOOK_TYPES_DESTINATION = './growthbook-types'; /** * Filename for the generated feature definition types */ exports.GROWTHBOOK_APP_FEATURES_FILENAME = 'app-features.ts'; /** * Default profile used when a profile flag is not provided */ exports.DEFAULT_GROWTHBOOK_PROFILE = 'default';