lesscss-java
lesscss-java copied to clipboard
LESS CSS Compiler for Java
To fix #51 I released a new 1.7.0.1.1 version. Thanks to @davidmc24 (https://github.com/davidmc24) for the fix at #52.
Hi. Currently, we can set the `--include-path` option, like every options, before calling `LessCompiler#init()`. I would like to change it when I compile a file, without calling `LessCompiler#init()` again, because...
Hi. It looks like nobody has free time for this project. The current snapshot is broken after several merged pull requests. Plase talk to the project owner (Marcel) if you...
Hi, Do you have plans for supporting watch feature (real time compilation) of less?
In the source code it explicitly turns off optimization with this line: cx.setOptimizationLevel(-1); This is because env.js is too large for the 64KB bytecode limit. However, if you split the...
Feature request to add source map support. See: 1. [Introduction to Source Maps](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/) 2. less/less.js#1050
I'm attempting to build a mixin for outputting rem units with a pixel fallback, basically: ``` .margin-top(@size: 1) { margin-top: @size * 16px; margin-top: @size * 1rem; } ``` However...
I created a simple LessCss filter for webutilities: http://code.google.com/p/webutilities/issues/detail?id=46 but unfortunately, when using LessCompiler.compile(String data) @imports don't work. When a relative path is specified, I see this error: org.lesscss.LessException: Couldn't...
If the CSS background shorthand property is used and includes position and size values lesscss-java throws a ClassCastException: for example - `background: url(@url_var) top / cover no-repeat;` output shows: `java.lang.ClassCastException:...
When compiling a file that `@import`s another LESS file, `lesscss-java` reports the wrong line number for syntax errors. For example, suppose I have the following files: #### `parent.less` ``` css...