How to compile .sass without viewing a file

I would like to decide when the file is compiled .sass. In other words, I do not want to watch the file, but compile it manually.

How can I do it?

+4
source share
2 answers

It was easier than I thought:

sass style.scss style.css
+9
source

You should take a look at Sassifier, it is a standalone compiler for Sass, which will be used as a third-party compiler https://github.com/zaus/Sassifier

I don’t know if it meets each side of your needs, but it opens the source code, so you can deploy it and customize it :)

0
source

All Articles