d11 theme
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
rdrew f035d16951 lots of layout changes + sidbars 2 weeks ago
..
node_modules/.bin lots of layout changes + sidbars 2 weeks ago
CHANGELOG.md lots of layout changes + sidbars 2 weeks ago
LICENSE lots of layout changes + sidbars 2 weeks ago
README.md lots of layout changes + sidbars 2 weeks ago
index.js lots of layout changes + sidbars 2 weeks ago
package.json lots of layout changes + sidbars 2 weeks ago
parse.js lots of layout changes + sidbars 2 weeks ago
parser.js lots of layout changes + sidbars 2 weeks ago
stringifier.js lots of layout changes + sidbars 2 weeks ago
stringify.js lots of layout changes + sidbars 2 weeks ago

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