Skip to content

v2.1.0

Compare
Choose a tag to compare
@fkling fkling released this 01 Sep 17:51
· 2306 commits to main since this release

New

  • "Short" docblocks are now recognized (#20, d3a3f3f):

    /** Short docblock */
  • Docblocks on shape fields are now added to the output (#21, f5415ce):

    React.PropTypes.shape({
      /**
       * Field description
       */
       field: React.PropTypes.string
    });

    produces

    {
      name: 'shape',
      value: {
        field: {
          name: 'string',
          description: 'Field description',
        }
    }