assemble / assemble-less

Grunt task for compiling LESS to CSS. This task does for less what Assemble does for HTML, making it much easier to modularize and reduce repetition in stylesheets.
http://github.com/assemble/assemble/
MIT License
66 stars 20 forks source link

Maximum call stack size exceeded... #31

Open alepez opened 10 years ago

alepez commented 10 years ago

I was using assemble-less to compile bootstrap when I got this error:

>> SyntaxError: Maximum call stack size exceeded in vendor/bootstrap/less/grid.less on line 11, column 3:
>> 10 .container {
>> 11   .container-fixed();
>> 12

This bug is described here: https://github.com/less/less.js/issues/1928

I fixed this, changing less dependency in package.json from ~1.6.0 to ~1.7.0:

  "dependencies": {
    "grunt-lib-contrib": "~0.6.1",
    "lodash": "~2.4.1",
    "less": "~1.7.0",
    "async": "~0.2.9"
  },