Skip to content

Instantly share code, notes, and snippets.

@ascott1
Created February 26, 2015 21:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ascott1/72196ac9b4ee841d1974 to your computer and use it in GitHub Desktop.
Save ascott1/72196ac9b4ee841d1974 to your computer and use it in GitHub Desktop.
*/
less: {
dev: {
options: {
paths: ['<%= env.frontEndPath %>/css/less'],
compress: false,
sourceMap: true,
sourceMapFilename: '<%= env.frontEndPath %>/css/style.css.map',
sourceMapBasepath: '<%= env.frontEndPath %>/css/less/',
sourceMapURL: 'style.css.map'
},
files: {
"<%= env.frontEndPath %>/css/style.css": "<%= env.frontEndPath %>/css/less/main.less"
}
},
dist: {
options: {
paths: ['<%= env.frontEndPath %>/css/less'],
compress: true,
sourceMap: false,
ieCompat: true
},
files: {
"<%= env.frontEndPath %>/css/style.min.css": "<%= env.frontEndPath %>/css/less/main.less"
}
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment