- Added component schematic that adds to existing project.
* Supports CSS-in-JS styles, functional components, etc.
- Lib and app schematics now support new style, funtional components options (same as component)
10 lines
181 B
TypeScript
10 lines
181 B
TypeScript
export interface Schema {
|
|
name: string;
|
|
project: string;
|
|
style?: string;
|
|
skipTests?: boolean;
|
|
export?: boolean;
|
|
pascalCaseFiles?: boolean;
|
|
classComponent?: boolean;
|
|
}
|