how to watch changes in whole directory/folder containing many sass files

build-process, css, sass, watch

Solution

Simply use the command `sass --watch <input folder>:<output folder>`, like this:

$ ls -l
css/ sass/
$ sass --watch sass:css

Where `<input folder>` contains the Sass files and `<output folder>` that hosts the generated CSS files.

Problem

How could I trace changes in whole directory containing many sass files ? I'm using the following command to watch changes in sass file: ``` sass --watch style.scss:style.css ``` But how to watch changes in whole directory/folder containing many sass files.

Original source

Related problems