tree: c38b3102bd3fe0e4389ca97ab58b7eaf0133297a [path history] [tgz]
  1. CHANGELOG.md
  2. index.js
  3. LICENSE
  4. package.json
  5. parse.js
  6. parser.js
  7. README.md
  8. stringifier.js
  9. stringify.js
  10. yarn.lock
node_modules/postcss-sass/README.md

postcss-sass

Build Status Coverage Status Greenkeeper badge Cult Of Martians

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
});