libs/nx/src/generators/building-block/schema.ts
Properties |
name | |
Type |
string
|
CLI Usage |
--name="Offer Selection"
|
Description
|
The name of the future Building Block. Must be unique. |
project | |
Type |
string
|
CLI Usage |
--project="@allianz/building-blocks-fnol"
|
Description
|
The name of the project where new Building Block will be placed. |
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;
}