Releases: jaydenseric/jsdoc-md
Releases · jaydenseric/jsdoc-md
Version 2.0.1
Patch
- Fix
<hr />
incorrectly appearing above non top level members.
Version 2.0.0
Major
@kind member
now displays an associated@type
and throws an error if there is none.
Minor
- Separate top level member sections with
<hr />
.
Patch
- Updated dev dependencies.
- Use default
tap
reporter for tests. - Simplify package
test:js
script glob.
Version 1.7.1
Patch
- Updated dependencies.
- Allow Babel to load config relative to files being parsed.
- Stopped automatically linking global types to MDN.
- Simplified ESLint config.
Version 1.7.0
Minor
- Added MDN links for
Uint8Array
types and updated snapshot tests, fixing #11 via #12.
Patch
- Updated dependencies.
- Updated package scripts and config for the new
husky
version. - Added a missing test for the
Promise
type MDN link.
Version 1.6.0
Minor
- Support Node.js v6+, from v8.5+.
Patch
- Work around a Babel breaking change to parsing decorators, see babel/babel#8562.
Version 1.5.0
Minor
Patch
- Updated dependencies.
- Removed the
npm-run-all
dev dependency and stopped using it for package scripts. - Swapped readme badge order.
Version 1.4.0
Minor
- Sort members in the documentation outline, fixes #8.
- Explicitly left align table cell contents.
- Display parameter and property names as inline code.
Patch
- Updated dependencies.
- Configured Prettier to lint
.yml
files. - Ensure the readme Travis build status badge only tracks
master
branch. - Use Badgen for the readme npm version badge.
Version 1.3.0
Minor
- Default documentation for global types (such as
Object
) can be overridden using@typedef
. - Also auto-link MDN articles for global types
function
andDate
.
Patch
- Varied capitalization of global types (such as
Object
) results in a consistently lowercase MDN link slug.
Version 1.2.0
Minor
- Generate function return documentation, fixes #7.
Version 1.1.0
Minor
- Support JSDoc inline tag links (e.g.
[`b` method]{@link A#b}
) for descriptions and tags with markdown content, closes #5.
Patch
- Correct slugs for successive type member links, fixes #6.
- Display CLI options as code in the readme.
- Internally refactor
jsdocAstToMember
tojsdocToMember
.