Postcss Less Versions Save

PostCSS Syntax for parsing LESS

v6.0.0

2 years ago

Breaking Changes

  • fix!: add postcss to peerDeps

Bugfixes

  • fix: node positional information for files with single-quotes in comments (#164)

Updates

  • docs: fix website URL for Less (#162)

v5.0.0

2 years ago

Breaking Changes

  • chore!: Node v12+ required

Bugfixes

  • fix: parse interpolation error (#159)
  • fix: source map generation (following #150) (#161)

Updates

  • chore: update dependencies

v4.0.0

3 years ago

Updates

  • refactor!: update to PostCSS 8 (#151)

Breaking Changes

This version removes support for Node v8

v3.1.4

5 years ago

Bugfixes

  • fix: inline comment with immediate asterisk. (a0975ec504011386cb54301007d5cc2f7623eba3)

v3.1.3

5 years ago

Bugfixes

  • fix: windows eol and inline comments (#137)

Updates

  • chore: update deps to fix audit

v3.1.1

5 years ago

Bugfixes

  • fix: correctly calculate last parens in ruleset as mixin param (#132)
  • fix: Inline comments shouldn't include newlines (#131)

v3.1.0

5 years ago

Bugfixes

  • fix: mixin !important (#126)
  • fix: mixin parameters with functions. fixes #122 (#125)

Features

  • feat: add extend property to nodes which use :extend (dfb8b1b)
  • feat: support less each function (#127)

v3.0.2

5 years ago

Bugfixes

fix: fixes #117, unclosed characters in inline comments

v3.0.1

5 years ago

Bugfixes

  • fix: crash on inline comments without leading space (#115)

v3.0.0

5 years ago

This major version is a complete rewrite of the module on PostCSS v7.x. Please see https://github.com/shellscape/postcss-less/pull/113 for full details of fixes included in this release.

Breaking Changes

  • @import are now AtRule with import: true property
  • LESS variable nodes are now AtRule with variable: true property
  • LESS mixin nodes are now Rule or AtRule (depending on where they are used/declared) with mixin: true property
  • LESS variables cannot contain whitespace between the variable name and the colon (e.g. @thing : value) and will be parsed as regular CSS.
  • !important no longer parsed separately if a space separates the ! and important.