Does Grunt-contrib-less Support --source-map-map-inline?
Title says it all. Is this Less option: http://lesscss.org/usage/#command-line-usage-source-map-map-inline Available via grunt-contrib-less, or some other plugin? I'm not hopeful s
Solution 1:
It sure does, here's a stripped down config of what I use:
less: {
options: {
sourceMap:true,
outputSourceFiles: true
},
lessFiles: {
src: [
'*.less'
],
ext: '.css',
cleancss:true
}
},
Post a Comment for "Does Grunt-contrib-less Support --source-map-map-inline?"