This project is not stable and is in development. If you'd like to contribute, please submit a Pull Request.
This module does not compile LESS. It simply parses mixins and variables so that PostCSS plugins can then transform LESS source code alongside CSS.
- lint your LESS code with 3rd-part plugins.
- apply PostCSS transformations (such as Autoprefixer) directly to the LESS source code
The main use case of this plugin is to apply PostCSS transformations directly to LESS source code. For example, if you ship a theme written in LESS and need Autoprefixer to add the appropriate vendor prefixes to it.
const syntax = require('postcss-less');
postcss(plugins).process(lessText, { syntax: syntax }).then(function (result) {
result.content // LESS with transformations
});
This module also enables parsing of single-line comments in CSS source code.
:root {
// Main theme color
--color: red;
}
Note that you don't need a special stringifier to handle the output; the default
one will automatically convert single line comments into block comments.
If you need to get inline comments, use stringifier from postcss-less
module:
import postCssLess from 'postcss-less';
const root = postCssLess.parse('// Hello world');
root.first.toString(); // returns '/* Hello world */'
root.first.toString({
stringify: postCssLess.stringify
}); // returns '// Hello world'
postcss-less
extends the default structure of Comment node
It's inline comment or not.
import postCssLess from 'postcss-less';
const root = postCssLess.parse('// Hello world');
root.first.inline // => true
It's block comment or not.
import postCssLess from 'postcss-less';
const root = postCssLess.parse('/* Hello world */');
root.first.block // => true
Precending characters of comment node: //
or /*
.
Raw content of the comment.
import postCssLess from 'postcss-less';
const root = postCssLess.parse('// Hello world');
root.first.raws.content // => '// Hello world'
postcss-less
parser is not compatible with Stylelint
, because Stylelint
can't process syntax tree from postcss-less
!
Please, check our guidelines: CONTRIBUTING.md
This module is based on the work of postcss-scss library and includes the LESS
parser efforts of github:gilt/postcss-less