Skip to content

v2.2.0

Compare
Choose a tag to compare
@fkling fkling released this 28 Sep 22:22
· 2260 commits to main since this release

(I wasn't sure whether this should be considered to be a bug fix or new feature, but I went with new feature instead)

New

  • Consider docblock above decorator annotations (#18). In the following example the docblock is now used for the component description:

    /**
    * This is the description
    */
    @SomeDecorator
    export default class extends React.Component {
    
    };
  • Detect isRequired in shape annotations (second part of #21)