less 1.7.4 → 1.7.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/.idea/jsLibraryMappings.xml +0 -1
  2. package/.idea/workspace.xml +160 -202
  3. package/CHANGELOG.md +13 -0
  4. package/Gruntfile.js +0 -12
  5. package/README.md +53 -53
  6. package/bin/lessc +4 -1
  7. package/bower.json +2 -2
  8. package/dist/less-1.7.4.js +59 -59
  9. package/dist/less-1.7.4.min.js +12 -12
  10. package/dist/less-1.7.5.js +8008 -0
  11. package/dist/less-1.7.5.min.js +16 -0
  12. package/dist/less-rhino-1.7.4.js +48 -48
  13. package/dist/less-rhino-1.7.5.js +9383 -0
  14. package/dist/lessc-rhino-1.7.4.js +2 -2
  15. package/dist/lessc-rhino-1.7.5.js +449 -0
  16. package/lib/less/functions.js +8 -1
  17. package/lib/less/import-visitor.js +2 -2
  18. package/lib/less/index.js +3 -3
  19. package/lib/less/parser/parser.js.orig +1747 -0
  20. package/lib/less/parser.js +27 -1
  21. package/lib/less/tree/directive.js +4 -1
  22. package/lib/less/tree/element.js +6 -22
  23. package/lib/less/tree/rule.js +7 -4
  24. package/lib/less/tree/rule.js.orig +164 -0
  25. package/lib/less/tree/ruleset.js +8 -1
  26. package/lib/less/tree/selector.js +1 -1
  27. package/package.json +6 -6
  28. package/test/browser/less.js +7275 -6947
  29. package/test/css/comments.css +8 -0
  30. package/test/css/css-3.css +6 -0
  31. package/test/css/import.css +5 -0
  32. package/test/css/mixins.css +3 -0
  33. package/test/css/property-name-interp.css +1 -0
  34. package/test/css/urls.css +1 -0
  35. package/test/less/comments.less +14 -1
  36. package/test/less/css-3.less +7 -0
  37. package/test/less/errors/import-malformed.less +1 -1
  38. package/test/less/errors/import-malformed.txt +3 -3
  39. package/test/less/import.less +8 -2
  40. package/test/less/mixins.less +1 -0
  41. package/test/less/property-name-interp.less +4 -1
  42. package/test/less/property-name-interp.less.orig +59 -0
  43. package/test/less/urls.less +2 -1
  44. package/test/modify-vars.js +17 -0
  45. package/tmp/browser/test-runner-main.html +4 -0
  46. package/tmp/less.js +8295 -0
  47. package/build/README.md +0 -53
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ # 1.7.5
2
+
3
+ 2014-09-03
4
+
5
+ - Allow comments in keyframe (complete comment support coming in 2.0)
6
+ - pass options to parser from less.render
7
+ - Support /deep/ combinator
8
+ - handle fragments in data-uri's
9
+ - float @charsets to the top correctly
10
+ - updates to some dependencies
11
+ - Fix interpolated import in media query
12
+ - A few other various small corrections
13
+
1
14
  # 1.7.4
2
15
 
3
16
  2014-07-27
package/Gruntfile.js CHANGED
@@ -78,13 +78,6 @@ module.exports = function(grunt) {
78
78
  },
79
79
  src: ['<%= build.rhinolessc %>'],
80
80
  dest: 'dist/lessc-rhino-<%= pkg.version %>.js'
81
- },
82
- // Generate readme
83
- readme: {
84
- // override task-level banner and footer
85
- options: {process: true, banner: '', footer: ''},
86
- src: ['build/README.md'],
87
- dest: 'README.md'
88
81
  }
89
82
  },
90
83
 
@@ -290,9 +283,4 @@ module.exports = function(grunt) {
290
283
  grunt.registerTask('benchmark', [
291
284
  'shell:benchmark'
292
285
  ]);
293
-
294
- // Readme.
295
- grunt.registerTask('readme', [
296
- 'concat:readme'
297
- ]);
298
286
  };
package/README.md CHANGED
@@ -1,53 +1,53 @@
1
- [![Build Status](https://travis-ci.org/less/less.js.png?branch=master)](https://travis-ci.org/less/less.js)
2
- [![Dependencies](https://david-dm.org/less/less.js.png)](https://david-dm.org/less/less.js) [![devDependency Status](https://david-dm.org/less/less.js/dev-status.png)](https://david-dm.org/less/less.js#info=devDependencies) [![optionalDependency Status](https://david-dm.org/less/less.js/optional-status.png)](https://david-dm.org/less/less.js#info=optionalDependencies)
3
-
4
- # [Less.js v1.7.4](http://lesscss.org)
5
-
6
- > The **dynamic** stylesheet language. [http://lesscss.org](http://lesscss.org).
7
-
8
- This is the JavaScript, official, stable version of Less.
9
-
10
-
11
- ## Getting Started
12
-
13
- Options for adding Less.js to your project:
14
-
15
- * Install with [NPM](https://npmjs.org/): `npm install less`
16
- * [Download the latest release][download]
17
- * Clone the repo: `git clone git://github.com/less/less.js.git`
18
-
19
- ## More information
20
-
21
- For general information on the language, configuration options or usage visit [lesscss.org](http://lesscss.org).
22
-
23
- Here are other resources for using Less.js:
24
-
25
- * [stackoverflow.com][so] is a great place to get answers about Less.
26
- * [Less.js Issues][issues] for reporting bugs
27
-
28
-
29
- ## Contributing
30
- Please read [CONTRIBUTING.md](./CONTRIBUTING.md). Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).
31
-
32
- ### Reporting Issues
33
-
34
- Before opening any issue, please search for existing issues and read the [Issue Guidelines](https://github.com/necolas/issue-guidelines), written by [Nicolas Gallagher](https://github.com/necolas/). After that if you find a bug or would like to make feature request, [please open a new issue][issues].
35
-
36
- Please report documentation issues in [the documentation project](https://github.com/less/less-docs).
37
-
38
- ### Development
39
-
40
- Read [Developing Less](http://lesscss.org/usage/#developing-less).
41
-
42
- ## Release History
43
- See the [changelog](CHANGELOG.md)
44
-
45
- ## [License](LICENSE)
46
-
47
- Copyright (c) 2009-2014 [Alexis Sellier](http://cloudhead.io/) & The Core Less Team
48
- Licensed under the [Apache License](LICENSE).
49
-
50
-
51
- [so]: http://stackoverflow.com/questions/tagged/twitter-bootstrap+less "StackOverflow.com"
52
- [issues]: https://github.com/less/less.js/issues "GitHub Issues for Less.js"
53
- [download]: https://github.com/less/less.js/zipball/master "Download Less.js"
1
+ [![NPM version](https://badge.fury.io/js/less.svg)](http://badge.fury.io/js/less) [![Build Status](https://travis-ci.org/less/less.js.png?branch=master)](https://travis-ci.org/less/less.js)
2
+ [![Dependencies](https://david-dm.org/less/less.js.png)](https://david-dm.org/less/less.js) [![devDependency Status](https://david-dm.org/less/less.js/dev-status.png)](https://david-dm.org/less/less.js#info=devDependencies) [![optionalDependency Status](https://david-dm.org/less/less.js/optional-status.png)](https://david-dm.org/less/less.js#info=optionalDependencies)
3
+
4
+ # [Less.js](http://lesscss.org)
5
+
6
+ > The **dynamic** stylesheet language. [http://lesscss.org](http://lesscss.org).
7
+
8
+ This is the JavaScript, official, stable version of Less.
9
+
10
+
11
+ ## Getting Started
12
+
13
+ Options for adding Less.js to your project:
14
+
15
+ * Install with [NPM](https://npmjs.org/): `npm install less`
16
+ * [Download the latest release][download]
17
+ * Clone the repo: `git clone git://github.com/less/less.js.git`
18
+
19
+ ## More information
20
+
21
+ For general information on the language, configuration options or usage visit [lesscss.org](http://lesscss.org).
22
+
23
+ Here are other resources for using Less.js:
24
+
25
+ * [stackoverflow.com][so] is a great place to get answers about Less.
26
+ * [Less.js Issues][issues] for reporting bugs
27
+
28
+
29
+ ## Contributing
30
+ Please read [CONTRIBUTING.md](./CONTRIBUTING.md). Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).
31
+
32
+ ### Reporting Issues
33
+
34
+ Before opening any issue, please search for existing issues and read the [Issue Guidelines](https://github.com/necolas/issue-guidelines), written by [Nicolas Gallagher](https://github.com/necolas/). After that if you find a bug or would like to make feature request, [please open a new issue][issues].
35
+
36
+ Please report documentation issues in [the documentation project](https://github.com/less/less-docs).
37
+
38
+ ### Development
39
+
40
+ Read [Developing Less](http://lesscss.org/usage/#developing-less).
41
+
42
+ ## Release History
43
+ See the [changelog](CHANGELOG.md)
44
+
45
+ ## [License](LICENSE)
46
+
47
+ Copyright (c) 2009-2014 [Alexis Sellier](http://cloudhead.io/) & The Core Less Team
48
+ Licensed under the [Apache License](LICENSE).
49
+
50
+
51
+ [so]: http://stackoverflow.com/questions/tagged/twitter-bootstrap+less "StackOverflow.com"
52
+ [issues]: https://github.com/less/less.js/issues "GitHub Issues for Less.js"
53
+ [download]: https://github.com/less/less.js/zipball/master "Download Less.js"
package/bin/lessc CHANGED
@@ -233,10 +233,13 @@ args = args.filter(function (arg) {
233
233
  case "--compatibility":
234
234
  cleancssOptions.compatibility = cleanOptionArgs[1];
235
235
  break;
236
+ case "--rounding-precision":
237
+ cleancssOptions.roundingPrecision = Number(cleanOptionArgs[1]);
238
+ break;
236
239
  default:
237
240
  console.log("unrecognised clean-css option '" + cleanOptionArgs[0] + "'");
238
241
  console.log("we support only arguments that make sense for less, '--keep-line-breaks', '-b'");
239
- console.log("'--s0', '--s1', '--advanced', '--skip-advanced', '--compatibility'");
242
+ console.log("'--s0', '--s1', '--advanced', '--skip-advanced', '--compatibility', '--rounding-precision'");
240
243
  continueProcessing = false;
241
244
  currentErrorcode = 1;
242
245
  break;
package/bower.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "less",
3
- "version": "1.7.4",
4
- "main": "./dist/less-1.7.4.js",
3
+ "version": "1.7.5",
4
+ "main": "./dist/less-1.7.5.js",
5
5
  "ignore": [
6
6
  "**/.*",
7
7
  "benchmark",
@@ -1,17 +1,17 @@
1
- /*!
2
- * Less - Leaner CSS v1.7.4
3
- * http://lesscss.org
4
- *
5
- * Copyright (c) 2009-2014, Alexis Sellier <self@cloudhead.net>
6
- * Licensed under the Apache v2 License.
7
- *
8
- */
9
-
10
- /** * @license Apache v2
11
- */
12
-
13
-
14
-
1
+ /*!
2
+ * Less - Leaner CSS v1.7.4
3
+ * http://lesscss.org
4
+ *
5
+ * Copyright (c) 2009-2014, Alexis Sellier <self@cloudhead.net>
6
+ * Licensed under the Apache v2 License.
7
+ *
8
+ */
9
+
10
+ /** * @license Apache v2
11
+ */
12
+
13
+
14
+
15
15
  (function (window, undefined) {//
16
16
  // Stub out `require` in the browser
17
17
  //
@@ -19,12 +19,12 @@ function require(arg) {
19
19
  return window.less[arg.split('/')[1]];
20
20
  };
21
21
 
22
-
22
+
23
23
  if (typeof(window.less) === 'undefined' || typeof(window.less.nodeType) !== 'undefined') { window.less = {}; }
24
24
  less = window.less;
25
25
  tree = window.less.tree = {};
26
26
  less.mode = 'browser';
27
-
27
+
28
28
  var less, tree;
29
29
 
30
30
  // Node.js does not have a header file added which defines less
@@ -2108,7 +2108,7 @@ less.Parser.serializeVars = function(vars) {
2108
2108
 
2109
2109
  return s;
2110
2110
  };
2111
-
2111
+
2112
2112
  (function (tree) {
2113
2113
 
2114
2114
  tree.functions = {
@@ -2873,7 +2873,7 @@ tree.functionCall = function(env, currentFileInfo) {
2873
2873
  tree.functionCall.prototype = tree.functions;
2874
2874
 
2875
2875
  })(require('./tree'));
2876
-
2876
+
2877
2877
  (function (tree) {
2878
2878
  tree.colors = {
2879
2879
  'aliceblue':'#f0f8ff',
@@ -3025,7 +3025,7 @@ tree.functionCall.prototype = tree.functions;
3025
3025
  'yellowgreen':'#9acd32'
3026
3026
  };
3027
3027
  })(require('./tree'));
3028
-
3028
+
3029
3029
  (function (tree) {
3030
3030
 
3031
3031
  tree.debugInfo = function(env, ctx, lineSeperator) {
@@ -3123,7 +3123,7 @@ tree.outputRuleset = function (env, output, rules) {
3123
3123
  };
3124
3124
 
3125
3125
  })(require('./tree'));
3126
-
3126
+
3127
3127
  (function (tree) {
3128
3128
 
3129
3129
  tree.Alpha = function (val) {
@@ -3153,7 +3153,7 @@ tree.Alpha.prototype = {
3153
3153
  };
3154
3154
 
3155
3155
  })(require('../tree'));
3156
-
3156
+
3157
3157
  (function (tree) {
3158
3158
 
3159
3159
  tree.Anonymous = function (value, index, currentFileInfo, mapLines, rulesetLike) {
@@ -3192,7 +3192,7 @@ tree.Anonymous.prototype = {
3192
3192
  };
3193
3193
 
3194
3194
  })(require('../tree'));
3195
-
3195
+
3196
3196
  (function (tree) {
3197
3197
 
3198
3198
  tree.Assignment = function (key, val) {
@@ -3222,7 +3222,7 @@ tree.Assignment.prototype = {
3222
3222
  };
3223
3223
 
3224
3224
  })(require('../tree'));
3225
-
3225
+
3226
3226
  (function (tree) {
3227
3227
 
3228
3228
  //
@@ -3294,7 +3294,7 @@ tree.Call.prototype = {
3294
3294
  };
3295
3295
 
3296
3296
  })(require('../tree'));
3297
-
3297
+
3298
3298
  (function (tree) {
3299
3299
  //
3300
3300
  // RGB Colors - #ff0014, #eee
@@ -3484,7 +3484,7 @@ function clamp(v, max) {
3484
3484
  }
3485
3485
 
3486
3486
  })(require('../tree'));
3487
-
3487
+
3488
3488
  (function (tree) {
3489
3489
 
3490
3490
  tree.Comment = function (value, silent, index, currentFileInfo) {
@@ -3513,7 +3513,7 @@ tree.Comment.prototype = {
3513
3513
  };
3514
3514
 
3515
3515
  })(require('../tree'));
3516
-
3516
+
3517
3517
  (function (tree) {
3518
3518
 
3519
3519
  tree.Condition = function (op, l, r, i, negate) {
@@ -3563,7 +3563,7 @@ tree.Condition.prototype = {
3563
3563
  };
3564
3564
 
3565
3565
  })(require('../tree'));
3566
-
3566
+
3567
3567
  (function (tree) {
3568
3568
 
3569
3569
  tree.DetachedRuleset = function (ruleset, frames) {
@@ -3584,7 +3584,7 @@ tree.DetachedRuleset.prototype = {
3584
3584
  }
3585
3585
  };
3586
3586
  })(require('../tree'));
3587
-
3587
+
3588
3588
  (function (tree) {
3589
3589
 
3590
3590
  //
@@ -3909,7 +3909,7 @@ tree.Unit.prototype = {
3909
3909
  };
3910
3910
 
3911
3911
  })(require('../tree'));
3912
-
3912
+
3913
3913
  (function (tree) {
3914
3914
 
3915
3915
  tree.Directive = function (name, value, rules, index, currentFileInfo, debugInfo) {
@@ -3982,7 +3982,7 @@ tree.Directive.prototype = {
3982
3982
  };
3983
3983
 
3984
3984
  })(require('../tree'));
3985
-
3985
+
3986
3986
  (function (tree) {
3987
3987
 
3988
3988
  tree.Element = function (combinator, value, index, currentFileInfo) {
@@ -4091,7 +4091,7 @@ tree.Combinator.prototype = {
4091
4091
  };
4092
4092
 
4093
4093
  })(require('../tree'));
4094
-
4094
+
4095
4095
  (function (tree) {
4096
4096
 
4097
4097
  tree.Expression = function (value) { this.value = value; };
@@ -4146,7 +4146,7 @@ tree.Expression.prototype = {
4146
4146
  };
4147
4147
 
4148
4148
  })(require('../tree'));
4149
-
4149
+
4150
4150
  (function (tree) {
4151
4151
 
4152
4152
  tree.Extend = function Extend(selector, option, index) {
@@ -4200,7 +4200,7 @@ tree.Extend.prototype = {
4200
4200
  };
4201
4201
 
4202
4202
  })(require('../tree'));
4203
-
4203
+
4204
4204
  (function (tree) {
4205
4205
  //
4206
4206
  // CSS @import node
@@ -4325,7 +4325,7 @@ tree.Import.prototype = {
4325
4325
  };
4326
4326
 
4327
4327
  })(require('../tree'));
4328
-
4328
+
4329
4329
  (function (tree) {
4330
4330
 
4331
4331
  tree.JavaScript = function (string, index, escaped) {
@@ -4384,7 +4384,7 @@ tree.JavaScript.prototype = {
4384
4384
 
4385
4385
  })(require('../tree'));
4386
4386
 
4387
-
4387
+
4388
4388
  (function (tree) {
4389
4389
 
4390
4390
  tree.Keyword = function (value) { this.value = value; };
@@ -4409,7 +4409,7 @@ tree.True = new(tree.Keyword)('true');
4409
4409
  tree.False = new(tree.Keyword)('false');
4410
4410
 
4411
4411
  })(require('../tree'));
4412
-
4412
+
4413
4413
  (function (tree) {
4414
4414
 
4415
4415
  tree.Media = function (value, features, index, currentFileInfo) {
@@ -4567,7 +4567,7 @@ tree.Media.prototype = {
4567
4567
  };
4568
4568
 
4569
4569
  })(require('../tree'));
4570
-
4570
+
4571
4571
  (function (tree) {
4572
4572
 
4573
4573
  tree.mixin = {};
@@ -4884,7 +4884,7 @@ tree.mixin.Definition.prototype = {
4884
4884
  };
4885
4885
 
4886
4886
  })(require('../tree'));
4887
-
4887
+
4888
4888
  (function (tree) {
4889
4889
 
4890
4890
  tree.Negative = function (node) {
@@ -4909,7 +4909,7 @@ tree.Negative.prototype = {
4909
4909
  };
4910
4910
 
4911
4911
  })(require('../tree'));
4912
-
4912
+
4913
4913
  (function (tree) {
4914
4914
 
4915
4915
  tree.Operation = function (op, operands, isSpaced) {
@@ -4967,7 +4967,7 @@ tree.operate = function (env, op, a, b) {
4967
4967
  };
4968
4968
 
4969
4969
  })(require('../tree'));
4970
-
4970
+
4971
4971
 
4972
4972
  (function (tree) {
4973
4973
 
@@ -4991,7 +4991,7 @@ tree.Paren.prototype = {
4991
4991
  };
4992
4992
 
4993
4993
  })(require('../tree'));
4994
-
4994
+
4995
4995
  (function (tree) {
4996
4996
 
4997
4997
  tree.Quoted = function (str, content, escaped, index, currentFileInfo) {
@@ -5048,7 +5048,7 @@ tree.Quoted.prototype = {
5048
5048
  };
5049
5049
 
5050
5050
  })(require('../tree'));
5051
-
5051
+
5052
5052
  (function (tree) {
5053
5053
 
5054
5054
  tree.Rule = function (name, value, important, merge, index, currentFileInfo, inline) {
@@ -5139,7 +5139,7 @@ function evalName(env, name) {
5139
5139
  }
5140
5140
 
5141
5141
  })(require('../tree'));
5142
-
5142
+
5143
5143
  (function (tree) {
5144
5144
 
5145
5145
  tree.RulesetCall = function (variable) {
@@ -5156,7 +5156,7 @@ tree.RulesetCall.prototype = {
5156
5156
  };
5157
5157
 
5158
5158
  })(require('../tree'));
5159
-
5159
+
5160
5160
  (function (tree) {
5161
5161
 
5162
5162
  tree.Ruleset = function (selectors, rules, strictImports) {
@@ -5729,7 +5729,7 @@ tree.Ruleset.prototype = {
5729
5729
  }
5730
5730
  };
5731
5731
  })(require('../tree'));
5732
-
5732
+
5733
5733
  (function (tree) {
5734
5734
 
5735
5735
  tree.Selector = function (elements, extendList, condition, index, currentFileInfo, isReferenced) {
@@ -5859,7 +5859,7 @@ tree.Selector.prototype = {
5859
5859
  };
5860
5860
 
5861
5861
  })(require('../tree'));
5862
-
5862
+
5863
5863
  (function (tree) {
5864
5864
 
5865
5865
  tree.UnicodeDescriptor = function (value) {
@@ -5875,7 +5875,7 @@ tree.UnicodeDescriptor.prototype = {
5875
5875
  };
5876
5876
 
5877
5877
  })(require('../tree'));
5878
-
5878
+
5879
5879
  (function (tree) {
5880
5880
 
5881
5881
  tree.URL = function (val, currentFileInfo, isEvald) {
@@ -5929,7 +5929,7 @@ tree.URL.prototype = {
5929
5929
  };
5930
5930
 
5931
5931
  })(require('../tree'));
5932
-
5932
+
5933
5933
  (function (tree) {
5934
5934
 
5935
5935
  tree.Value = function (value) {
@@ -5964,7 +5964,7 @@ tree.Value.prototype = {
5964
5964
  };
5965
5965
 
5966
5966
  })(require('../tree'));
5967
-
5967
+
5968
5968
  (function (tree) {
5969
5969
 
5970
5970
  tree.Variable = function (name, index, currentFileInfo) {
@@ -6009,7 +6009,7 @@ tree.Variable.prototype = {
6009
6009
  };
6010
6010
 
6011
6011
  })(require('../tree'));
6012
-
6012
+
6013
6013
  (function (tree) {
6014
6014
 
6015
6015
  var parseCopyProperties = [
@@ -6148,7 +6148,7 @@ tree.Variable.prototype = {
6148
6148
  };
6149
6149
 
6150
6150
  })(require('./tree'));
6151
-
6151
+
6152
6152
  (function (tree) {
6153
6153
 
6154
6154
  var _visitArgs = { visitDeeper: true },
@@ -6294,7 +6294,7 @@ tree.Variable.prototype = {
6294
6294
  }
6295
6295
  };
6296
6296
 
6297
- })(require('./tree'));
6297
+ })(require('./tree'));
6298
6298
  (function (tree) {
6299
6299
  tree.importVisitor = function(importer, finish, evalEnv, onceFileDetectionMap, recursionDetector) {
6300
6300
  this._visitor = new tree.visitor(this);
@@ -6439,7 +6439,7 @@ tree.Variable.prototype = {
6439
6439
  };
6440
6440
 
6441
6441
  })(require('./tree'));
6442
-
6442
+
6443
6443
  (function (tree) {
6444
6444
  tree.joinSelectorVisitor = function() {
6445
6445
  this.contexts = [[]];
@@ -6483,7 +6483,7 @@ tree.Variable.prototype = {
6483
6483
  }
6484
6484
  };
6485
6485
 
6486
- })(require('./tree'));
6486
+ })(require('./tree'));
6487
6487
  (function (tree) {
6488
6488
  tree.toCSSVisitor = function(env) {
6489
6489
  this._visitor = new tree.visitor(this);
@@ -6726,7 +6726,7 @@ tree.Variable.prototype = {
6726
6726
  }
6727
6727
  };
6728
6728
 
6729
- })(require('./tree'));
6729
+ })(require('./tree'));
6730
6730
  (function (tree) {
6731
6731
  /*jshint loopfunc:true */
6732
6732
 
@@ -7143,7 +7143,7 @@ tree.Variable.prototype = {
7143
7143
  };
7144
7144
 
7145
7145
  })(require('./tree'));
7146
-
7146
+
7147
7147
  (function (tree) {
7148
7148
 
7149
7149
  tree.sourceMapOutput = function (options) {
@@ -7285,7 +7285,7 @@ tree.Variable.prototype = {
7285
7285
  };
7286
7286
 
7287
7287
  })(require('./tree'));
7288
-
7288
+
7289
7289
  //
7290
7290
  // browser.js - client-side engine
7291
7291
  //
@@ -7968,12 +7968,12 @@ less.refreshStyles = loadStyles;
7968
7968
  less.Parser.fileLoader = loadFile;
7969
7969
 
7970
7970
  less.refresh(less.env === 'development');
7971
-
7971
+
7972
7972
  // amd.js
7973
7973
  //
7974
7974
  // Define Less as an AMD module.
7975
7975
  if (typeof define === "function" && define.amd) {
7976
7976
  define(function () { return less; } );
7977
7977
  }
7978
-
7978
+
7979
7979
  })(window);