Skip to content

Instantly share code, notes, and snippets.

@dropddesigns
Created May 5, 2016 06:39
Show Gist options
  • Save dropddesigns/d28523a4e2bebadae03f39cc49a3cbf9 to your computer and use it in GitHub Desktop.
Save dropddesigns/d28523a4e2bebadae03f39cc49a3cbf9 to your computer and use it in GitHub Desktop.
SASS Build script to build both uncompressed and compress CSS files
{
"cmd": [
"sass", "--update", "--watch", "$file:${file_path}/${file_base_name}.css", "--sourcemap=none", "--stop-on-error", "--no-cache", "--style", "expanded",
"&",
"sass", "--update", "$file:${file_path}/${file_base_name}.min.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"}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment