Skip to content

Releases: shellscape/postcss-less

v2.0.0

28 May 12:12
Compare
Choose a tag to compare

Bugfixes

  • fix: handle whitespace between variable and colon (#101)

Breaking Changes

Users who were relying on incorrect whitespace parsing around colons (#101) will likely see breaking behavior and should update code to remove workarounds and rely on correct parsing.

v1.1.5

21 Mar 16:41
Compare
Choose a tag to compare

This patch version reverts the changes made in #98, reported in #99, which were impacting users with inaccurate CssSyntaxErrors.

v1.1.4

20 Mar 22:18
Compare
Choose a tag to compare

Bugfixes

  • Handle spaces between variable name and colon (#98)
  • Add extra check for not adding params from brackets. (#97)

v1.1.0

10 Jul 12:32
Compare
Choose a tag to compare
  • Parser supplies a Root stringifier
  • Single token mixins handled properly
  • Import nodes with unquoted url() URIs are handled properly

v1.0.0

17 May 16:25
Compare
Choose a tag to compare

@import... statements are now parsed as Import nodes.
Rule.extendRuleRule.extend
Rule.ruleWithoutBodyRule.empty

!important Mixins

a { .mixin !important; }
Rule.selector : ".mixin !important"Rule.selector : ".mixin" and Rule.important : true

Rule selectors not longer contain semicolons as well. Mixin and Extend Rules will have a Rule.raws.semicolor : true property set. Semicolons are also stripped from raw properties before and after between mixins.

See README for more info.

v0.16.0

05 May 13:43
Compare
Choose a tag to compare
  • added support for PostCSS 5.2+
  • fixes output adding superfluous spaces in comments

PLEASE NOTE

This will be the last version of PostCSS-LESS supporting Node 4.x.

v0.15.0

12 Sep 10:45
Compare
Choose a tag to compare

Release with PR #59

v0.14.0

06 Jul 07:54
Compare
Choose a tag to compare

Fixes for semicolon parsing

v0.13.0

19 Jun 08:32
Compare
Choose a tag to compare

Default stringifier for Rule. It returns original LESS code, f.e. mixins without body.

v0.12.0

16 May 12:46
Compare
Choose a tag to compare
Merge pull request #43 from webschik/webschik.fix-build

fixed build