I use Sass to create my CSS and Blueprint as my structure. Since I use these tools for a Django application, my workflow:
Edit scss file in emacs while sass --watch works
Save the file and alt-tab tab to the terminal to run ruby compress.rb -p project1
Reset my local dev server
View changes on the page
However, I recently added some changes, and Blueprint will not include them in compilation from typography / forms / grid / reset.css files to screen / print / ie.css. The scss files passed validation with Sass, and changes were made to the CSS files compiled by Sass. However, they are not in the last screen.css file. How to fix it? This is very frustrating.
source share