libs/nx/src/generators/journey/schema.ts
The schema for the journey generator
Properties |
directory (Optional) | |
Type |
string
|
CLI Usage |
--directory="apps/oe/acm/my-journey"
|
Description
|
The root directory for the journey project. |
name | |
Type |
string
|
CLI Usage |
--name="My Journey"
|
Description
|
The name of the journey to generate. It will be dasherized and used as project name. If the "directory" option is not specified, it is also used to construct the project's root path by joining the apps directory of your Nx workspace and the project name. |
export interface JourneyGeneratorSchema {
/**
* The name of the journey to generate. It will be dasherized and used as project name.
* If the "directory" option is not specified, it is also used to construct the project's root path by joining the apps directory of your Nx workspace and the project name.
* @x-prompt Please type the name of the journey
* @cliUsage --name="My Journey"
*/
name: string;
/**
* The root directory for the journey project.
* @cliUsage --directory="apps/oe/acm/my-journey"
*/
directory?: string;
}