UNPKG

@nx/plugin

Version:

This plugin is used to create Nx plugins! It contains generators for generating common plugin features like generators, executors, migrations and more.

35 lines (34 loc) 1.09 kB
{ "$schema": "https://json-schema.org/schema", "cli": "nx", "$id": "NxPluginPreset", "title": "Generator ran by create-nx-plugin", "description": "Initializes a workspace with an nx-plugin inside of it. Use as: `create-nx-plugin` or `create-nx-workspace --preset @nx/nx-plugin`.", "examples": [ { "command": "npx create-nx-plugin", "description": "Creates a new Nx workspace containing an Nx plugin." }, { "command": "npx create-nx-workspace --preset @nx/plugin", "description": "Creates a new Nx workspace containing an Nx plugin." } ], "type": "object", "properties": { "pluginName": { "type": "string", "description": "Plugin name", "aliases": ["name"] }, "createPackageName": { "type": "string", "description": "Name of package which creates a workspace" }, "useProjectJson": { "type": "boolean", "description": "Use a `project.json` configuration file instead of inlining the Nx configuration in the `package.json` file." } }, "required": ["pluginName"] }