29 lines
983 B
JSON
29 lines
983 B
JSON
{
|
|
"name": "preset",
|
|
"factory": "./src/generators/preset/generator",
|
|
"schema": {
|
|
"$schema": "http://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 @nrwl/nx-plugin`.",
|
|
"type": "object",
|
|
"properties": {
|
|
"pluginName": {
|
|
"type": "string",
|
|
"description": "Plugin name",
|
|
"aliases": ["name"]
|
|
}
|
|
},
|
|
"required": ["pluginName"],
|
|
"presets": []
|
|
},
|
|
"description": "Initializes a workspace with an nx-plugin inside of it. Use as: `create-nx-workspace --preset @nrwl/nx-plugin`.",
|
|
"hidden": true,
|
|
"x-use-standalone-layout": true,
|
|
"implementation": "/packages/nx-plugin/src/generators/preset/generator.ts",
|
|
"aliases": [],
|
|
"path": "/packages/nx-plugin/src/generators/preset/schema.json",
|
|
"type": "generator"
|
|
}
|