Attached is a trace while compiling using grunt dist
(webmaker)Anils-MacBook-Pro:bootstrap anil$ grunt dist
Running "clean:dist" (clean) task
Running "less:compileCore" (less) task
>> ArgumentError: error evaluating function `ceil`: argument must be a number in less/variables.less on line 48, column 27:
>> 47 @font-size-base: 15px;
>> 48 @font-size-large: ceil(@font-size-base * 1.25); // ~18px
>> 49 @font-size-small: ceil(@font-size-base * 0.85); // ~12px
Warning: Error compiling less/bootstrap.less Use --force to continue.
Aborted due to warnings.
The grunt-contrib-less
is the latest version and as can be seen, the variable @font-size-base is defined just above and it works.
A similar thread I found https://groups.google.com/forum/#!topic/brackets-dev/ZpBOFqDc3H8 but no solutions yet.