nx/packages/nx-plugin/collection.json
2020-11-25 14:34:03 -05:00

34 lines
1.1 KiB
JSON

{
"name": "Nx Plugin",
"version": "0.1",
"extends": ["@nrwl/workspace"],
"schematics": {
"plugin": {
"factory": "./src/schematics/plugin/plugin",
"schema": "./src/schematics/plugin/schema.json",
"description": "Create a Nx Plugin"
},
"e2e-project": {
"factory": "./src/schematics/e2e-project/e2e",
"schema": "./src/schematics/e2e-project/schema.json",
"description": "Create a e2e application for a Nx Plugin",
"hidden": true
},
"migration": {
"factory": "./src/schematics/migration/migration",
"schema": "./src/schematics/migration/schema.json",
"description": "Create a migration for an Nx Plugin"
},
"generator": {
"factory": "./src/schematics/generator/generator",
"schema": "./src/schematics/generator/schema.json",
"description": "Create a generator for an Nx Plugin"
},
"executor": {
"factory": "./src/schematics/executor/executor",
"schema": "./src/schematics/executor/schema.json",
"description": "Create a executor for an Nx Plugin"
}
}
}