I am using Netbeans 8.0 to edit my HTML, PHP, and CSS. Just today I have installed SASS and enabled it within Netbeans. I am developing on Ubuntu, and Ruby and Sass are both available in the repositories, so I installed them and Netbeans found the SASS executable with the click of a button. So, I assume it's all working.
I have created a file called style.scss
, and put in some test colour variables and a dummy #test
id.
My understanding was that when I saved the .scss
file that it would get processed and a .css
file with the same name, in this case style.css
, would get created. Or updated if it already existed.
Is this not the case? I did see other SASS and .css
file generation questions here on Stack Overflow, but I didn't see one specific to Netbeans, so I'm not sure if there's something I haven't set up correctly in my environment. Also, I don't need to upload to a server when saving, I am just testing and developing locally.
How do I actually generate a .css
file from my .scss
in Netbeans 8.0?