Sass.watchDir

Activates directory watching and recompiles any file every time it changes. Watching works on two scenarios. If singleFile option is enabled, recompiling affects all files in folder. Otherwise, only changed file will be recompiled. Any watching process creates own thread and returns it Tid. To stop the process unwatchDir method should be used.

class Sass
Tid
watchDir
(
in string input
,
in string output
)

Parameters

input string

path to folder contains SASS files

output string

path to result folder

Return Value

Type: Tid

Tid of watching thread

Meta