Skip to content

Instantly share code, notes, and snippets.

@joshearl
Created January 22, 2013 12:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshearl/4594306 to your computer and use it in GitHub Desktop.
Save joshearl/4594306 to your computer and use it in GitHub Desktop.
Sublime project file that includes a custom build system. The build.ps1 script will be selected by default when Sublime's auto build feature is enabled.
{
"folders":
[
{
"path": "/",
"folder_exclude_patterns": ["js", "css"],
"file_exclude_patterns": [".gitignore"]
}
],
"build_systems":
[
{
"name": "CompileSassAndCoffeeScript",
"cmd": ["%SystemRoot%\\system32\\WindowsPowerShell\\v1.0\\powershell.exe", "./build.ps1"],
"shell": true,
"working_dir": "${project_path}",
"selector": "text,source"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment