lesscss-servlet
lesscss-servlet copied to clipboard
Using version 1.5.0 results in error on initialisation
lesscss.LessEngine.
Looks like there's an error in line 2588 of less.js. It reads
('file://' + ctx.debugInfo.fileName).replace(/([.:/\\])/g, function (a) {
in the most recent version of less.js, it's
('file://' + ctx.debugInfo.fileName).replace(/([.:\/\\])/g, function (a) {
ie, the / behind the colon is escaped like / (in lib/less/tree.js). It's related to this issue;
https://github.com/less/less.js/commit/15af82848d6417f3578470257faed43f61c22331
Any chance we can get a fixed version in maven?