When I run sass --watch app.sass:app.css
terminal shows that changes have been detected to sass but won't compile to css. I am using Bourbon so all my .scss and .sass files are imported via mixins.
ex.
>>> Sass is watching for changes. Press Ctrl-C to stop.
>>> Change detected to: css/2-modules/top-nav.scss
Make sure the file you are saving with an _filename.scss
has been properly imported into the mainfile.scss
. if you have not imported the _filename.scss
it will detect a change but not compile.
I had the same issue! In my case, it was caused by having several @imports
listed like this:
@import 'colors';
@import 'fonts';
@import 'size';
When i changed it to this it all started working again:
@import 'colors', 'fonts', 'size';
Although it should not be needed:
"Sass imports have the same syntax as CSS imports, except that they allow multiple imports to be separated by commas rather than requiring each one to have its own @import." - sass-lang.com/documentation
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With