@rxap/plugin-library
Version:
This package provides generators and executors for managing and maintaining Nx plugin libraries. It includes functionality for generating index exports, fixing dependencies, generating JSON schemas, and more. It helps streamline the development process fo
23 lines (22 loc) • 525 B
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "ExposeAsSchematic",
"title": "",
"type": "object",
"properties": {
"projects": {
"type": "array",
"items": {
"type": "string"
},
"description": "The list of projects to expose as schematics.",
"examples": [["my-lib", "another-lib"]]
},
"project": {
"type": "string",
"description": "The name of a single project to expose as a schematic.",
"examples": ["my-lib"]
}
},
"required": []
}