0.5.1 • Published 8 years ago

react-docgen-ui v0.5.1

Weekly downloads
2
License
WTFPL
Repository
github
Last release
8 years ago

React DocGen UI

Build Status NPM Dependencies License

How to use

use gulp to generate react-doc.json (react-doc infos with examples) and react-doc.js (requires in all example)

    gulp.src([
      'path/to/components/which/need/to/generate/docs'
    ])
      .pipe(gulpDocGenUi({
        cwd: gutil.env.cwd ? process.cwd() : null
      }))
      .on('error', gutil.log.bind(gulp))
      .pipe(gulp.dest(`path/to/dist`))

then see the example to config and create the doc pages.

## Options

### descriptionCompiler

Pass descriptionCompiler: str => str to change the default compiler marked on description keys in the exported object. This is useful if you want to process the docs further yourself, for example building full markdown documentation pages.

Change logs

  • 0.4.x updated to babel6, if use commonjs, notice the default issue