lesscss-engine icon indicating copy to clipboard operation
lesscss-engine copied to clipboard

LESS Engine - A Java wrapper for less.js

Results 23 lesscss-engine issues
Sort by recently updated
recently updated
newest added

I got an exception compiling LESS that works fine with 1.5.1. Looks like the ampersand operator support got lost? com.asual.lesscss.LessException: com.asual.lesscss.LessException: Parse Error: Unrecognised input (line 2, column 1) near...

If I try to compile a less file that is in a jar, i get an IOException: java.io.IOException: No such file jar:file:/path/to/jar/file.jar!/path/to/file.less getClassLoader().getResource() is finding the file in the classpath,...

I am trying to work with this library in a Grails project but just running the example code LessEngine engine = new LessEngine(); String text = engine.compile("div { width: 1...

there seems to be an issue with being able to turn on relative pathing for resources. Is this functionality not available? In the js, I can call relativeUrls: true.

A new HTTPSResourceLoader (copy of HTTPResourceLoader) could be added to the resource loader chain to allow loading resources via HTTPS. Things like: @import "https://....less"; do not work right now.

for the sake of code maintenance I've placed all of the bootstrap less files in a subfolder named bootstrap and I am trying to @import it from the parent folder,...

For files a.less: ``` @import b.less; .bar { .foo; font-size: 15px; } ``` and b.less: ``` .foo { background: green; } ``` lesscss-engine compiles a.less to the following css: ```...

I've just upgraded from 1.3.3 to 1.4.2. The CSS resulted from compiling with the new version has some incorrect/empty extra comments generated, compared with the old version. I've attached an...

Hi, Is there a best practice to add dynamic @variable to engine ? Let's say I have a file.less and would like to call: - engine.compile('file.less', map); where map contains...