Open IAmJulianAcosta opened 9 years ago
Hi, I want to know if is possible to be more selective in the compiling of the assets. I mean:
/*app/styles/home.scss*/ @import "home/a.css"; @import "home/b.css"; /*...*/
/*app/styles/blog.scss*/ @import "blog/a.css"; @import "blog/b.css"; /*...*/
Changing home/_a.css triggers the compilation of all directory, instead of only recompiling home.css. compass watch works this way:
home/_a.css
compass watch
>>> Compass is watching for changes. Press Ctrl-C to Stop. modified blog/_a.scss write stylesheets/a.css
Hi, I want to know if is possible to be more selective in the compiling of the assets. I mean:
Changing
home/_a.css
triggers the compilation of all directory, instead of only recompiling home.css.compass watch
works this way: