Skip to content

Instantly share code, notes, and snippets.

@rikukissa
Created March 18, 2013 11:52
Show Gist options
  • Save rikukissa/5186670 to your computer and use it in GitHub Desktop.
Save rikukissa/5186670 to your computer and use it in GitHub Desktop.
Sublime build config for webapps
{
"folders":
[
{
"path": "* PATH TO PROJECT FILES *"
}
],
"build_systems":
[
{
"name": "Coffee",
"cmd": ["coffee", "-o", "public/js", "-c", "$file"],
"selector": "source.coffee",
"working_dir": "${project_path}"
},
{
"name": "Jade",
"cmd": ["jade", "-O", "public", "$file"],
"selector": "source.jade",
"working_dir": "${project_path}"
},
{
"name": "Stylus",
"cmd": ["stylus", "-o", "public/css", "$file"],
"selector": "source.stylus",
"working_dir": "${project_path}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment