8.2.0 • Published 4 years ago

@co-it/ngrx-ducks-schematics v8.2.0

Weekly downloads
58
License
MIT
Repository
-
Last release
4 years ago

NgRx Ducks Schematics

You get this package automatically if you install @co-it/ngrx-ducks.

Commands

CommandDescription
ng generate @co-it/ngrx-ducks:duck <path/duck>Create a duck in the desired directory

Parameter

ParameterDescription
projectThe name of the project.
barrelWhen true (the default) and not flat, creates a index.ts barrel file.
flatWhen true, creates files at the top level of the project.
specWhen true (the default), generates a \"spec.ts\" test file for the new Duck.
effectsWhen true (the default), generates an \"effects.ts\" file for the new Duck.
moduleThe declaring NgModule for the effect (or nearest NgModule if omitted).
skipImportWhen true, does not import the effect into the owning NgModule.
selectorsWhen true (the default), generates a \"selectors.ts\" file for the new Duck.