-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(Schematics): Upgrade schematics to new CLI structure
BREAKING CHANGE: Minimum dependency for @ngrx/schematics has changed: @angular-devkit/core: ^0.5.0 @angular-devkit/schematics: ^0.5.0
- Loading branch information
1 parent
ca5df12
commit b99d9ff
Showing
41 changed files
with
1,214 additions
and
479 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,30 @@ | ||
export interface Schema { | ||
/** | ||
* The name of the component. | ||
*/ | ||
|
||
name: string; | ||
appRoot?: string; | ||
/** | ||
* The path to create the component. | ||
*/ | ||
|
||
path?: string; | ||
sourceDir?: string; | ||
/** | ||
* The name of the project. | ||
*/ | ||
project?: string; | ||
/** | ||
* Specifies if a spec file is generated. | ||
*/ | ||
spec?: boolean; | ||
/** | ||
* Flag to indicate if a dir is created. | ||
*/ | ||
|
||
flat?: boolean; | ||
/** | ||
* Group actions file within 'actions' folder | ||
*/ | ||
|
||
group?: boolean; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.