ng-stories-schematics
v1.0.0
Published
Angular stories (Storybook) schematics
Downloads
71
Maintainers
Readme
ng stories schematics
This angular schematics generate an storybook file. Following the next folder structure.
src/ project source code
|- app/ app components
| |- button/ button component example
| |- button.component.*
| |- button.stories.ts <-- story generated
| +- ...
Installation
npm install --save-dev ng-stories-schematics
Usage
Add path and file name on one line
ng g ng-stories-schematics:empty path/name
Add path and file name using arguments
ng g ng-stories-schematics:empty --path path_to_file --name file_name
Advice
If you use vscode I recommend to use vscode-angular-schematics to easily create stories file.
Config
Add to settings.json config file this.
"ngschematics.schematics": [
"ng-stories-schematics"
],