I want to separate my (giant) global css file into multiple files. I'm using sass. Is there an easy way to get sass to watch multiple files? I think I could use @import, but just wanted to know if there was another (better) way.
Thanks in advance.
|
I want to separate my (giant) global css file into multiple files. I'm using sass. Is there an easy way to get sass to watch multiple files? I think I could use @import, but just wanted to know if there was another (better) way. Thanks in advance. |
|||
|
What Rich Bradshaw mentions is correct, however here is another approach that you could take. Create 1 scss file called
So when you make a change to the But like I said, Rich Bradshaw's solution will work just as well and depending on the project you're working on might be better to use. |
|||||||||||
|
|
I use import, then go to my media directory, which includes a directory called css with all my css in and run To clarify this, if you name your imported files starting with an underscore, then SASS doesn't try to compile those. So, if you have a file called style.scss containing these lines,
and some files called _reset.scss and _blog.scss will mean that when you run the command above it produces one file called style.css that contains all the other files. Variables declared higher up work as well. |
||||
sass --watch public/stylesheets/sass:public/stylesheets. That will monitor all.scssfiles inpublic/stylesheets/sassand write them out as.csstopublic/stylesheets/– Zabba Apr 7 '11 at 1:14