I want to create my own compiled css file using the source Less boot files In my project I use mean.io.
how to integrate less into the middle stack?
I found many tools there like
https://www.npmjs.org/package/grunt-bootstrap
https://github.com/sindresorhus/grunt-recess
https://github.com/gruntjs/grunt-contrib-less
so I'm a little confused ^^
I am also pleased with some tutorials
UPDATE
I ended up using grunt-contrib-less
manually copy the file
/less/bootstrap.less /less/variables.less
in my src folder i.e. SRC / less
than in my grunt file
less: { bootstrap: { options: { strictMath: true, sourceMap: true, outputSourceFiles: true, sourceMapURL: '<%= pkg.name %>.css.map', sourceMapFilename: '<%= distdir %>/css/<%= pkg.name %>.css.map' }, files: { '<%= distdir %>/css/<%= pkg.name %>.css': '<%= src.src %>/less/bootstrap.less' } } }
and in my variables. I can do
//** Background color for `<body>`. @body-bg:
and I have the coolest body colors bg :)
Whisher
source share