Sass.compileFolder

Compiles folder with SASS files. There are two compiling variants: 1) If singleFile option is enabled, method compiles all folder SASS files to the output to a single file with name defined in singleFile.name. By now it is impossible to create source map to that file. 2) Otherwise, method compiles SASS files name-by-name to the folder output. Source maps will be created too.

class Sass
void
compileFolder
(
in string input
,
in string output
)

Parameters

input string

path to folder contains SASS files

output string

path to result folder

Meta