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.

Home Page:http://github.com/assemble/assemble/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Maximum call stack size exceeded...

alepez opened this issue · comments

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: less/less.js#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"
  },