-
Notifications
You must be signed in to change notification settings - Fork 47
Backward Incompatible Changes in less.js 1.4.0
SomMeri edited this page Mar 4, 2013
·
8 revisions
https://github.com/cloudhead/less.js/pull/1151
Some of related issues:
- https://github.com/cloudhead/less.js/issues/654
- https://github.com/cloudhead/less.js/issues/600
- https://github.com/cloudhead/less.js/issues/974
- https://github.com/cloudhead/less.js/issues/1116#issuecomment-12338538
The import statement will be modified to act as @import-once https://github.com/cloudhead/less.js/pull/1010
Selector escaping (~"h1 @{escapedVariable}")
syntax is deprecated in less.js. They will use @{escapedVariable}
placed directly in the selector.
Less.js references:
Variable as pseudo class parameter is deprecated. Do not use :nth-child(@number)
, use selector interpolation :nth-child(@{number})
instead.
Less.js references:
- found it in selectors.less test case https://github.com/cloudhead/less.js/blob/master/test/less/selectors.less#L129
semicolon vs comma