Skip to content

Releases: straker/livingcss

v7.0.1

06 Aug 02:32
Compare
Choose a tag to compare

warn if using Node < 14

v7.0.0

06 Aug 02:32
Compare
Choose a tag to compare

Dropped support for Node < 14

v6.0.3

21 Dec 00:51
Compare
Choose a tag to compare

fix(*): prevent leaks from prior runs

v6.0.2

01 Aug 04:21
Compare
Choose a tag to compare

chore: update dependencies

v6.0.1

09 Jun 23:09
Compare
Choose a tag to compare

chore: update dependencies

v6.0.0

06 May 02:16
Compare
Choose a tag to compare

Drop node v6 support.

fix(utils): add async/await for reading files and globs. Ensure callback is in file order
chore: update dependencies

v5.0.2

07 Feb 05:51
Compare
Choose a tag to compare

fix(utils): fix readFileGlobs from returning early and not processing all files
chore: update dependencies

v5.0.1

22 Sep 07:04
Compare
Choose a tag to compare

fix(utils): fix bug that read files out of order

v5.0.0

27 Apr 05:49
Compare
Choose a tag to compare
  • fix(parseComments): left trim comment description when used as name of section
  • feat(tags): a custom tag with only a type of markdown and no name will now result in just a DOM string instead of creating an object.
/**
 * @customTag {markdown} Hello *world!*
 */

Before:

customTag: {
  description: '<p>Hello <em>world!</em></p>',
  type: 'markdown'
}

After:

customTag: '<p>Hello <em>world!</em></p>'

v4.5.1

17 Apr 03:51
Compare
Choose a tag to compare
  • fix(tags): trim section names for trailing whitespace
  • fix(tags): replace all &#64; in @code and @example sections