Skip to content

Instantly share code, notes, and snippets.

@ricardoriogo
Last active December 17, 2015 21:19
Show Gist options
  • Save ricardoriogo/5674132 to your computer and use it in GitHub Desktop.
Save ricardoriogo/5674132 to your computer and use it in GitHub Desktop.
Exemplo de configuração .sublime-project
{
"folders":
[
{
"path": "www"
}
],
"build_systems":
[
{
"name": "Main LESS",
"cmd": ["$packages\\LESS-build\\dotless.Compiler.exe", "main.less", "main.css"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.css.less",
"variants" :
[
{
"name": "Main LESS and Minify",
"cmd": ["$packages\\LESS-build\\dotless.Compiler.exe", "-m", "main.less", "main.min.css"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.css.less"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment