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.02 kB
{ "$schema": "http://json-schema.org/schema", "$id": "InitBuildable", "title": "", "type": "object", "properties": { "project": { "type": "string", "description": "The name of the buildable library project to initialize.", "examples": ["my-lib"] }, "projects": { "type": "array", "items": { "type": "string" }, "description": "The list of buildable library projects to initialize.", "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": [] }