UNPKG

@baseplate-dev/sync

Version:

Library for syncing Baseplate descriptions

16 lines 737 B
/** * The filename for extractor configuration files that define template extraction rules. * These files contain a list of all templates available to the generator. */ export const EXTRACTOR_CONFIG_FILENAME = 'extractor.json'; /** * The filename for provider configuration files that define template providers. * These files contain mappings of file patterns to provider configurations. */ export const PROVIDERS_CONFIG_FILENAME = 'providers.json'; /** * The filename for template metadata files that track template usage and generation info. * These files contain information about each template in the generated codebase. */ export const TEMPLATES_INFO_FILENAME = '.templates-info.json'; //# sourceMappingURL=constants.js.map