1.0.0 • Published 4 years ago

ng-stories-schematics v1.0.0

Weekly downloads
8
License
MIT
Repository
github
Last release
4 years ago

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"
],