mirror of
https://github.com/less/less.js.git
synced 2026-02-10 15:05:09 -05:00
* env.dumpLineNumbers was being lost when doing "offline" compilation (within node.js) * Added documentation for the changed options * --line-numbers now takes a parameter (either "comments", "mediaquery" or "all") * The system can now again output mediaqueries for FireLESS * Moved comments tests in debug/comments, will duplicate for mediaquery and for "all" Everything is still utterly broken though, tests still fail.
21 lines
175 B
Plaintext
21 lines
175 B
Plaintext
@import "import/test.less";
|
|
|
|
.start() {
|
|
.test2 {
|
|
color: red;
|
|
}
|
|
}
|
|
|
|
.mix() {
|
|
color: black;
|
|
}
|
|
|
|
.test1 {
|
|
.mix();
|
|
}
|
|
|
|
.start();
|
|
|
|
.mixin_import1();
|
|
|
|
.mixin_import2(); |