css - Sublime text sass build system: compressed with comments -


i have 2 sass build systems installed in sublime text: sass , sass compressed. problem sass compressed delete comments pretty bad native wordpress style because first comment block needed there.

is possible create build system compressed css preserves comments?

the current sass compressed build system looks this:

{      "cmd": ["sass", "--update", "$file:${file_path}/${file_base_name}.css", "--stop-on-error", "--no-cache", "--style", "compressed"],      "selector": "source.sass, source.scss",     "line_regex": "line ([0-9]+):",      "osx":     {         "path": "/usr/local/bin:$path"     },      "windows":     {         "shell": "true"     }  } 

ok got pretty easy workaround. newer versions of sass supporting /*! important comment */ syntax , leaving out part in compilation.

so add ! comment block of wordpress style.