Last active
December 16, 2015 11:29
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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