Bootstrap ParseError: Syntax Error on line 648 in mixins.less:648:25 647

less, twitter-bootstrap, twitter-bootstrap-3, twitter-recess

Solution

You have to update less to newer (for Bootstrap 3.1 and newer)

For those who use grunt, there's a magic

npm update --save

If problems with updating npm dependencies see How do I update each dependency in package.json to the latest version?.

Problem

After updating to Bootstrap 3.1.0 I get this error when compiling less files: ParseError: Syntax Error on line 648 in mixins.less:648:25 647 ``` padding-right: (@grid-gutter-width / 2); 648 &:extend(.clearfix all); 649 } ``` I use recess, version: 1.1.9. How can I solve it ?

Original source

Related problems