A gulp plugin which converts less files to scss files
npm install gulp-less-to-scss
var lessToScss = require('gulp-less-to-scss');
gulp.task('lessToScss',function(){
gulp.src('themes/system/less/*.less')
.pipe(lessToScss())
.pipe(gulp.dest('themes/system/scss'));
});
Be Aware that not all less files can be converted properly.
If files are not converted well, you should correct them manually!!
(MIT License)
Copyright (c) 2014 horicdesign