twenzel on master
Fix typo in description (compare)
twenzel on master
Updated Nuget key (compare)
assume i have this file structure
app
control1
control1.js
control1.html
control1.less
control2
control2.js
control2.html
control2.less
and so one
so i allready can bundle js - its native
i have own bundle for html templates, its simple
and i have to get the last one - less bundle for that purpose
now i can do that
var cssbundle = new SmartLessBundle("~/bundles/css/")
.NonOrdering()
.Include("~/Content/bootstrap/bootstrap.less",new SmartLessFileTransform())
.Include("~/Content/font-awesome/less/font-awesome.less", new SmartLessFileTransform())
.IncludeDirectory("~/Content/less", "*.less", true)
.IncludeDirectory("~/app/v01", "*.less", true);
Smartbundle do compile once, after all files are joined