Releases: shellscape/postcss-less
Releases · shellscape/postcss-less
v6.0.0
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
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
Updates
- refactor!: update to PostCSS 8 (#151)
Breaking Changes
This version removes support for Node v8
v3.1.4
Bugfixes
- fix: inline comment with immediate asterisk. (a0975ec)
v3.1.3
Bugfixes
- fix: windows eol and inline comments (#137)
Updates
- chore: update deps to fix audit
v3.1.1
Bugfixes
- fix: correctly calculate last parens in ruleset as mixin param (#132)
- fix: Inline comments shouldn't include newlines (#131)
v3.1.0
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
Bugfixes
fix: fixes #117, unclosed characters in inline comments
v3.0.1
Bugfixes
- fix: crash on inline comments without leading space (#115)
v3.0.0
This major version is a complete rewrite of the module on PostCSS v7.x. Please see #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
.