2
附件是一個跟蹤,同時使用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.
grunt-contrib-less
的是最新的版本,可以看出,可變@字體大小基只是上面所定義,它工作編譯。
一個類似的線程,我發現https://groups.google.com/forum/#!topic/brackets-dev/ZpBOFqDc3H8但沒有解決方案呢。
看起來它是用'--strict-math = on'編譯的較少選項,但Boosrtrap 3.0.3和以下)需要'--strict-math = off'。 (相反,當前的Boosrtrap master需要'--strict-math = on')。 –