Search code examples
csssassminify

sass --watch with automatic minify?


Is there a way to run:

sass --watch a.scss:a.css

but have a.css end up being minified?

How would I avoid having to run a separate minification step as I compile my stylesheet?


Solution

  • sass --watch a.scss:a.css --style compressed
    

    Consult the documentation for updates: