I used the following build event in Visual Studio 2013 to compile Bootstrap 3.0 with a break according to this answer and worked
recess "$(ProjectDir)Content\bootstrap\bootstrap.less" --compress > "$(ProjectDir)Content\bootstrap-compiled.css"
Now this does not work for Bootstrap 3.1.1, and they say Grunt will do it, I tried:
grunt-contrib-less "$(ProjectDir)Content\bootstrap\bootstrap.less" --compress > "$(ProjectDir)Content\bootstrap-compiled.css"
But he cannot make it work. Any ideas on how to get Grunt to work with VS 2013.
Note. I installed Node.js and cut earlier, then> npm install grunt-contrib-less, and then of course> npm update grunt-contrib-less.
source share