UNPKG

@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

38 lines (37 loc) 1.03 kB
{ "$schema": "http://json-schema.org/schema", "$id": "InitPreset", "title": "", "type": "object", "properties": { "project": { "type": "string", "description": "The name of the library project to initialize with a preset.", "examples": ["my-lib"] }, "projects": { "type": "array", "items": { "type": "string" }, "description": "The list of library projects to initialize with a preset.", "examples": [["my-lib", "another-lib"]] }, "skipFormat": { "type": "boolean", "default": false, "description": "Whether to skip formatting files with Prettier after initialization." }, "overwrite": { "type": "boolean", "default": false, "description": "Whether to overwrite existing files during initialization." }, "skipProjects": { "type": "boolean", "default": false, "description": "Whether to skip executing project-specific initialization logic." } }, "required": [] }