forked from lix-project/lix-website
1.1 KiB
1.1 KiB
postcss-sass
A Sass parser for PostCSS, using gonzales-pe.
Not all Sass syntax supported. Parser under development.
This module does not compile Sass. It simply parses mixins as custom at-rules & variables as properties, so that PostCSS plugins can then transform Sass source code alongside CSS.
Install
npm i postcss-sass --save
Usage
var postcssSass = require("postcss-sass");
postcss(plugins).process(sass, { syntax: postcssSass }).then(function (result) {
result.content // Sass with transformations
});