This PR ensures that our init generators are hidden, such that they don't appear in Nx Console when running generators, for example. The init generator is meant to be used when running other generators, like app or lib, and should not be run directly. ## Current Behavior Init is not hidden ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> Init is hidden ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
18 lines
508 B
JSON
18 lines
508 B
JSON
{
|
|
"name": "Nx Gradle",
|
|
"version": "0.1",
|
|
"generators": {
|
|
"init": {
|
|
"factory": "./src/generators/init/init#initGenerator",
|
|
"schema": "./src/generators/init/schema.json",
|
|
"description": "Initializes a Gradle project in the current workspace",
|
|
"hidden": true
|
|
},
|
|
"ci-workflow": {
|
|
"factory": "./src/generators/ci-workflow/generator",
|
|
"schema": "./src/generators/ci-workflow/schema.json",
|
|
"description": "Setup a CI Workflow to run Nx in CI"
|
|
}
|
|
}
|
|
}
|