Skip to content

Instantly share code, notes, and snippets.

@joshearl
Last active December 16, 2015 11:29
Show Gist options
  • Save joshearl/5427477 to your computer and use it in GitHub Desktop.
Save joshearl/5427477 to your computer and use it in GitHub Desktop.
Example Sublime Text project file customized for SASS development. It changes the output directory for compiled SASS files to a css folder, which is excluded from the side bar.
{
"folders": [{
"path": "src",
"folder_exclude_patterns": ["css"]
}],
"build_systems": [{
"name": "Sass",
"cmd": ["sass", "--update", "$file:${file_path}/../css/${file_base_name}.css"]
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment