ASP.Net MVC4 + Bootstrap (LESS) + dotLess.
Goal is to transform the Bootstrap .less files into a single bundle of .css, and I'm running into showstopper issues.
Bundle.config
var bootstrapStyles = new Bundle("~/bundle/style/bootstrap").Include("~/Content/less/*.less");
bootstrapStyles.Transforms.Add(new LessTransform());
bootstrapStyles.Transforms.Add(new CssMinify());
bundles.Add(bootstrapStyles);
Only bootstrap's less files, which should not have any red-flag syntax problems.
The next step was to build that transformer class LessTransform to produce the css.
The transformer class implements the Process() and the problematic code exists inside... here's both scenarios and their problems:
Scenario 1: Static Less.Parse()
var parsedLess = Less.Parse(bundle.Content);
bundle.Content = parsedLess;
// Throws a FileNotFoundException
// "You are importing a file ending in .less that cannot be found."
// reset.less and it definitely exists in that folder.
Scenario 2: LessEngine.TransformToCss()
var content = new StringBuilder();
var engine = new LessEngine();
foreach (var file in bundle.Files)
{
// text is extracted correctly.
var text = File.ReadAllText(file.FullName);
// transform function returns an empty string, no errors
var css = engine.TransformToCss(text, file.FullName);
content.AppendLine(css);
}
bundle.Content = content.ToString();
Question
Anyone have an insight on either of these errors? Know any solutions? Neither make sense to me. Thanks.
LessWeb.Parse(content, DotlessConfiguration.GetDefaultWeb());instead ofLess.Parse(content);you'll get a better error message. At least that's what I got. – mrydengren Oct 17 '12 at 20:45