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

32 lines (31 loc) 825 B
{ "$schema": "http://json-schema.org/schema", "version": 2, "title": "RunGenerator executor", "description": "", "type": "object", "properties": { "generator": { "type": "string", "description": "Name of the generate to execute" }, "options": { "type": "object", "description": "Options to pass to the generator" }, "withoutProjectArgument": { "type": "boolean", "description": "If true, the project argument will not be passed to the generator" }, "dryRun": { "alias": "dry-run", "type": "boolean", "description": "If true, the generator will be executed in dry run mode" }, "verbose": { "type": "boolean", "description": "If true, the generator will be executed in verbose mode" } }, "required": [] }