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

42 lines (41 loc) 1.12 kB
{ "$schema": "http://json-schema.org/schema", "version": 2, "title": "UpdatePackageGroup executor", "description": "", "type": "object", "properties": { "packageGroupRegex": { "type": "array", "items": { "type": "string" }, "default": [ "@rxap\/", "@angular\/", "@nx\/", "@nestjs\/", "@sentry\/" ], "description": "List of regexes to match package name that should be added to the package group" }, "merge": { "type": "boolean", "default": false, "description": "If true, the package group will be merged with the existing package group. If false, the package group will be replaced." }, "include": { "type": "array", "items": { "type": "string" }, "description": "List of package names that should be added to the package group" }, "includeDependencies": { "type": "boolean", "default": false, "description": "If true, the dependencies of the included packages will be added to the package group" } }, "required": [] }