Skip to content

Instantly share code, notes, and snippets.

@davefreiman
Forked from syphoxy/gist:dab74c83a154eaea85fc
Last active August 29, 2015 14:04
Show Gist options
  • Save davefreiman/c47e550cd6f857bd097b to your computer and use it in GitHub Desktop.
Save davefreiman/c47e550cd6f857bd097b to your computer and use it in GitHub Desktop.
function scss-compile {
scss --compass -q \
-I "skin/frontend/enterprise/yeti/scss/styles/" \
"skin/frontend/enterprise/$1/scss/$1.scss" \
"skin/frontend/enterprise/$1/css/$1.css" \
&& echo "Compile succeeded!" \
|| echo "Compile failed!"
}
function scss-compile-debug {
scss --compass -g -l -t expanded \
-I "skin/frontend/enterprise/yeti/scss/styles/" \
"skin/frontend/enterprise/$1/scss/$1.scss" \
"skin/frontend/enterprise/$1/css/$1.css" \
&& echo "Compile succeeded!" \
|| echo "Compile failed!"
}
function scss-watch {
scss --compass -l -I "skin/frontend/enterprise/yeti/scss/styles/" \
--watch "skin/frontend/enterprise/$1/scss/":"skin/frontend/enterprise/$1/css/"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment