@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
33 lines (32 loc) • 663 B
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "InitSchematic",
"title": "",
"type": "object",
"properties": {
"project": {
"type": "string"
},
"projects": {
"type": "array",
"items": {
"type": "string"
}
},
"skipFormat": {
"type": "boolean",
"default": false
},
"overwrite": {
"type": "boolean",
"default": false,
"description": "Whether to overwrite existing files"
},
"skipProjects": {
"type": "boolean",
"default": false,
"description": "Whether to skip executing project specific initialization"
}
},
"required": []
}