Skip to content

Instantly share code, notes, and snippets.

@WraithKenny
Created February 13, 2014 20:29
Show Gist options
  • Save WraithKenny/8983195 to your computer and use it in GitHub Desktop.
Save WraithKenny/8983195 to your computer and use it in GitHub Desktop.
{
"cmd": [
"lessc",
"${file_base_name}.less",
"${file_base_name}.css",
"--no-color",
"--no-ie-compat",
"--verbose",
"--source-map=${file_base_name}.map",
],
"selector": "source.less",
"windows": { "shell": true, },
"variants": [
{
"name": "Minify",
"cmd": [
"lessc",
"-x",
"${file_base_name}.less",
"${file_base_name}.min.css",
"--no-color",
"--no-ie-compat",
"--verbose",
"--source-map=${file_base_name}.min.map",
],
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment