forked from lix-project/lix-website
.. | ||
node_modules | ||
CHANGELOG.md | ||
index.js | ||
LICENSE | ||
package.json | ||
parse.js | ||
parser.js | ||
README.md | ||
stringifier.js | ||
stringify.js |
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
});