@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
45 lines (44 loc) • 1.22 kB
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "AddMigration",
"title": "",
"type": "object",
"properties": {
"project": {
"type": "string",
"description": "Name of the project",
"x-prompt": "For which project should the migration be created?"
},
"name": {
"type": "string",
"description": "Name of the migration",
"x-prompt": "What name would you like to use?"
},
"description": {
"type": "string",
"description": "Description of the migration",
"x-prompt": "What description would you like to use?"
},
"packageVersion": {
"type": "string",
"description": "Version to use for the migration.",
"x-prompt": "What version would you like to use for the migration?",
"x-priority": "important"
},
"packageJsonUpdates": {
"type": "boolean",
"description": "Whether or not to include `package.json` updates.",
"default": false
},
"increment": {
"type": "string",
"enum": ["major", "minor", "patch"],
"description": "Increment the version of the package.json file",
"x-priority": "important"
}
},
"required": [
"project",
"name"
]
}