UNPKG

@o3r/components

Version:

This module contains component-related features (Component replacement, CMS compatibility, helpers, pipes, debugging developer tools...) It comes with an integrated ng builder to help you generate components compatible with Otter features (CMS integration

47 lines (46 loc) 1.39 kB
{ "$schema": "http://json-schema.org/draft-07/schema", "type": "object", "$id": "ConfigMigrationMetadataCheckBuilderSchema", "title": "Check config migration metadata builder", "description": "Check config migration metadata builder", "properties": { "migrationDataPath": { "type": ["string", "array"], "items": { "type": "string" }, "description": "Glob of the migration files to use." }, "granularity": { "type": "string", "description": "Granularity of the migration check.", "default": "minor", "enum": [ "major", "minor" ] }, "allowBreakingChanges": { "type": "boolean", "description": "Are breaking changes allowed.", "default": false }, "shouldCheckUnusedMigrationData": { "type": "boolean", "description": "Whether to throw an error in case of a migration item that is not used during metadata checks", "default": false }, "packageManager": { "type": "string", "description": "Override of the package manager, otherwise it will be computed from the project setup." }, "metadataPath": { "type": "string", "description": "Path of the config metadata file.", "default": "./component.config.metadata.json" } }, "additionalProperties": false, "required": ["migrationDataPath"] }