jurcovicovam
95beef2135
Merge https://github.com/less/less.js into misleading-error-message-2069
...
Conflicts:
test/sourcemaps/basic.json
2014-07-27 13:50:40 +02:00
jurcovicovam
c9c6ddbdfc
Properties merging should work also inside directives #2035
...
Fixes issue #2035 - property merge inside @font-face. The _mergeRules function is now called also for directives with rules. It used to be called only for rulesets.
I had to turn off jasmine tests for merge.less, because it was replacing all urls by their assumed full paths. For example, the url(something.eot) was changed into url(http://localhost:8081/test/less/something.eot ). The result did not matched with expected css and failed.
Note: I'm not sure why values order in source map changed. It does not seem to be caused by my change, it was failing before I made them.
2014-07-26 00:22:49 +02:00
jurcovicovam
d44a524b92
Raise error in case of an empty selector inside :extend.
2014-07-25 22:35:51 +02:00
jurcovicovam
f4d0442dbc
Removing useless comments.
2014-07-24 14:13:43 +02:00
jurcovicovam
864c63d27b
Fix ordering of @import and @charset rules #1954 #2013
...
The genCss method of ruleset.js splits child nodes into two groups:
* rules,
* rulesets.
Rules are always printed first and have special handling for last rule.
Rulesets are always printed second. Wrong ordering was caused by the
condition that determined what is rule and what is ruleset.
Issue #2013 : The condition made no difference between @charset and @page,
because both are compiled into tree.Directive nodes. I added isRulesetLike
method to the tree.Directive to differentiate between them.
Issue #1954 : The condition treated all tree.Anonymous types as rules and
caused them to float up. That is incorrect, because `@import (inline)` is
compiled into tree.Anonymous too, but should be treated as ruleset and
stay where it is.
2014-07-22 14:46:58 +02:00
Miguel Castillo
b7224670c9
Adding handling for upper case drive letter in Windows
...
The check fails when the path starts with a Windows letter drive that’s
upper case, causing the path to then include the currentDirectory.
This fails when a rootPath is specified along with an import statements
like:
@import url("brackets_colors.less");
2014-07-11 18:36:03 -04:00
Luke Page
546bedd344
1.7.3 release
2014-06-22 16:12:14 +01:00
Luke Page
383027886c
merge from master
2014-06-22 16:05:09 +01:00
Luke Page
5e13673674
Merge branch 'master' of https://github.com/less/less.js
2014-06-22 11:24:02 +01:00
Luke Page
fc26d5c77e
Fix backtracking on multiplication to support dimension /|* keyword, with or without strict maths. Fixes #2066 .
2014-06-22 11:23:33 +01:00
Luke Page
73c34ac24f
improve some of the error messages when not using the chunker.
2014-06-22 10:43:05 +01:00
seven-phases-max
91fdb3940f
don't round values returned by colour query functions.
2014-06-19 22:43:28 +04:00
Luke Page
94f746b5e7
move some dependencies out of chunker. make chunker optional. start fixing error messages chunker handled
2014-06-19 18:23:19 +01:00
Luke Page
7ad43291f5
1.7.2 release
2014-06-19 06:20:20 +01:00
Luke Page
04cb8bdfb2
fix regression with jsifying code - all dimensions would be rounded. Fixes #2057
2014-06-18 06:18:02 +01:00
Luke Page
4c094e70b5
Merge branch 'master' of https://github.com/less/less.js
2014-06-18 06:05:08 +01:00
Luke Page
0c2c1b2ba3
suport passing strings to paths
2014-06-18 06:04:34 +01:00
Luke Page
f615fcb53e
Merge pull request #2045 from tim-smart/feature/sourcemaps-base64
...
Base64 encode source maps
2014-06-10 22:41:37 +01:00
Luke Page
fdd01f6b00
merge in latest 1.7.1 release
2014-06-10 19:30:21 +01:00
Luke Page
12fdcab084
1.7.1 release
2014-06-08 17:18:47 +01:00
Luke Page
dcdc76f9d0
Merge pull request #2022 from ForbesLindesay/2_0_0-refactor-chunker-and-less-error
...
2.0.0 refactor chunker and less error
2014-06-08 17:10:25 +01:00
Forbes Lindesay
01a5d7cd8c
Fix incorrect variable name for error
2014-06-06 11:03:06 +01:00
Forbes Lindesay
be151fb21d
Add missing semicolon
2014-06-06 11:00:54 +01:00
Forbes Lindesay
78a92e702d
Fix LessError being used before being defined
2014-06-06 11:00:08 +01:00
Forbes Lindesay
8c978cd767
Pass env to chunker for use in error messages
2014-06-06 10:58:29 +01:00
Luke Page
c872caa289
Merge pull request #1976 from peruginni/master
...
Added condition to check if HEX code contain only valid characters (issue #1015 )
2014-06-06 08:11:50 +01:00
Luke Page
cd63bc520a
Merge pull request #2019 from gdelhumeau/remove-done-output
...
Remove the "done" message displayed at the end of the compilation with Rhino.
2014-06-06 08:07:25 +01:00
Dmitri Pyatkov
81f949b19a
window.ActiveXObject in IE11: fix boolean casting
...
in Internet Explorer 11:
window.ActiveXObject // function ActiveXObject() {[native code]}
!window.ActiveXObject // *true*
2014-06-04 16:54:27 +08:00
Tim Smart
ac0db09759
Base64 encode source maps
...
This prevents some edge cases where encodeURIComponent fails to create a valid
source map.
This particular edge case was identified when trying to create source maps for
the lesshat mixin library.
Signed-off-by: Tim Smart <tim.smart@designworks.co.nz >
2014-06-04 11:20:07 +12:00
Forbes Lindesay
07f9ba258e
Move chunker and LessError into separate files
...
This begins the process of cleaning up parser.js
[see #1902 ]
2014-05-20 16:12:18 +01:00
Forbes Lindesay
815d609223
Use native Promises when available
2014-05-20 15:39:04 +01:00
Forbes Lindesay
b2820b09f4
Return a promise rather than an event emitter
...
[discussed in #1902 ]
2014-05-20 15:37:43 +01:00
Guillaume Delhumeau
f94c41fe42
Remove the "done" message displayed at the end of the compilation with Rhino.
2014-05-20 16:10:36 +02:00
seven-phases-max
7a1c534e1b
Fixes e("").
2014-05-17 21:29:10 +04:00
Luke Page
ddfd1ca21b
Fix #1987 . First, res may be null if we have an error with a URL. Second, if the URL has no protocol, use http
2014-05-11 08:41:31 +01:00
Luke Page
6745058d1f
Merge branch 'master' of https://github.com/cloudhead/less.js
2014-05-11 07:45:17 +01:00
Luke Page
501b7fa9a6
use graceful fs for file actions
2014-05-11 07:44:33 +01:00
Luke Page
6075c81f93
Merge pull request #2000 from David-Hari/master
...
Set CSS text after style element is added to DOM, to fix crash on IE < 9...
2014-05-11 07:31:14 +01:00
seven-phases-max
563c47b7d7
Fixes a regression when a mixin guard can't see the mixin parameter variables in certain cases.
2014-05-10 07:43:03 +04:00
David-Hari
c75bb15b2a
Set CSS text after style element is added to DOM, to fix crash on IE < 9.
2014-05-09 16:22:17 +10:00
Ondřej Macoszek
5b8b8def23
Added more flexible check for HEX color code. Also error is now less specific.
2014-05-08 12:12:06 +02:00
Luke Page
028fe1a4ca
make some changes suggested in #1107 to improve open file handles
2014-05-06 06:50:40 +01:00
Luke Page
6214b0f93c
add comment, make + clearer by changing to Number constructor
2014-05-06 06:27:55 +01:00
Luke Page
596853700b
Merge branch '1924-fix-1' of github.com:seven-phases-max/less.js
2014-05-06 06:21:17 +01:00
Luke Page
5647d4d276
Ignore quote type when comparing values. Fixes #1992
2014-05-06 06:20:07 +01:00
Ondřej Macoszek
31ffdb8c9f
Added condition to check if HEX code contain only valid characters
2014-04-15 13:20:04 +02:00
Dominic Barnes
7f8dfae815
improving paths determination during file loader, less likely to pass undefined and break node
2014-04-14 11:34:57 -05:00
meri
d6d983f727
Merge branch 'master' of https://github.com/sandroboehme/less.js into sandroboehme-master
2014-04-12 13:39:28 +02:00
Luke Page
5c0b5cf9d2
Merge pull request #1929 from seven-phases-max/recursive-loop-regression-fix
...
Recursive mixin calls regression fix.
2014-04-11 07:44:28 +01:00
Sandro Boehme
87f8df23af
Throwing an error now on writeError if silentoption is not set to give users of the API the possibility to distinguish between a successful compilation and an unsuccessful one without needing to parse the output.
2014-04-05 18:46:08 +02:00