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.4 kB
{ "$schema": "http://json-schema.org/draft-07/schema", "type": "object", "$id": "ComponentMigrationMetadataCheckBuilderSchema", "title": "Check component migration metadata builder", "description": "Check component 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 component metadata file.", "default": "./component.class.metadata.json" } }, "additionalProperties": false, "required": ["migrationDataPath"] }