Skip to content

LuisReinoso/ng-stories-schematics

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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