libs/nx/src/generators/building-block/schema.ts
nx
Properties |
| name | |
| Type |
string
|
| CLI Usage |
--name="Offer Selection"
|
|
Description
|
The name of the future Building Block. Must be unique. Please type the name of the future Building Block --name="Offer Selection" |
| project | |
| Type |
string
|
| CLI Usage |
--project="@allianz/building-blocks-fnol"
|
|
Description
|
The name of the project where new Building Block will be placed. Please type the name of the project where new Building Block will be placed --project="@allianz/building-blocks-fnol" |
export interface BuildingBlockGeneratorSchema {
/**
* The name of the future Building Block. Must be unique.
* @x-prompt Please type the name of the future Building Block
* @cliUsage --name="Offer Selection"
*/
name: string;
/**
* The name of the project where new Building Block will be placed.
* @x-prompt Please type the name of the project where new Building Block will be placed
* @cliUsage --project="@allianz/building-blocks-fnol"
*/
project: string;
}