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.
According to the information, you can use the next command line:
Source: http://sassbreak.com/watch-your-sass/#what-does---watch-do
Just in case someone faces with this issue in 2018:
sass Website refers to Ruby Sass that is been deprecated. and as now (May 2018) if you install dart sass via npm , it does not support
--watch
commandWhat to do:
you need to install
node-sass
globaly , like:and then restart the command line , then use this code:
to compile your scass files to css.
basically node-sass supports
--watch
command and we use that to compile our scss codes to regular css files.and just in case you get an error like this at the first time that you save your .scss file:
what you need to do is save it again, it will work correctly!