classafSass4f::SassResult

sys::Obj
  afSass4f::SassResult

Sass compilation results.

autoprefix

Source

Void autoprefix()

A really shitty version of Autoprefixer.

https://github.com/postcss/autoprefixer

css

Source

Str css

The compiled CSS.

inputFile

Source

File? inputFile

The input Scss file.

options

Source

SassOptions options

The options used to compile the Sass files.

saveCss

Source

Void saveCss(File cssFile)

Saves the CSS to the given file.

If the given file is a directory then the resulting filename is taken from the input file with a .css extension. The parent directory is created if it does not exist.

saveSourceMap

Source

Void saveSourceMap(File sourceMapFile)

Saves the source map to the given file.

If the given file is a directory then the resulting filename is taken from the input file with a .css.map extension. The parent directory is created if it does not exist.

sourceMap

Source

Str? sourceMap

The compiled source map.