# postcss-sass **Repository Path**: mirrors_Semigradsky/postcss-sass ## Basic Information - **Project Name**: postcss-sass - **Description**: A Sass parser for PostCSS, using gonzales-pe. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-03-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # postcss-sass [![Build Status](https://travis-ci.org/AleshaOleg/postcss-sass.svg?branch=master)](https://travis-ci.org/AleshaOleg/postcss-sass) A [Sass](http://sass-lang.com/) parser for [PostCSS](https://github.com/postcss/postcss), using [gonzales-pe](https://github.com/tonyganch/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 ```js var postcssSass = require("postcss-sass"); postcss(plugins).process(sass, { syntax: postcssSass }).then(function (result) { result.content // Sass with transformations }); ```