I have a problem with Prepros configuration.
I want to watch for changes in all *.scss
files in my project, but I want to compile only the style.css
file.
Content of style.scss:
@import "_bootstrap";
@import "_bootstrap-compass.scss";
@import "_bootstrap-mincer.scss";
@import "_bootstrap-sprockets.scss";
I managed to configure my main file scss/style.scss
to compile to file style.css
. Compilation works ok. But I don't want to do that manually, everytime I make a change in some file.
Is there a way to watch for changes in all *.scss
files? And when a change occurs, is there a way to tell Prepros to trigger style.scss
compilation?