I have already referred this question on SO but it is not the solution I'm looking for.
I'm a Java Web Developer, and so far for all CSS pre-processing needs, I've been using Less but now I want to move Sass due to its server-side rendering nature. But since it requires gem
package manager and thus is more closer to Ruby then Java, how can I adopt it in my Java Web Applications that I develop in Eclipse?
Note that I'm not looking for Syntax Highlighting feature for .scss
/.sass
files in Eclipse, but I'd want that when my application is run on server from within Eclipse, the Sass is processed automatically and gets compiled to regular CSS. (Instead of running sass --watch
outside Eclipse for each Sass file I create and save and include generated .css
file separately in my web pages)
P.S. I'm using both Linux and Windows, but I primarily develop in Linux.