Needed something like this:
gulp.src(path.join(conf.paths.src, '/**/*.less'))
.pipe($.less()) // already have some result, but HUGE changes are needed
.pipe(HERE_I_GET_IT_AS_A_TEXT(function(str){
// a lot of different changes
return changed_str;
}))
.pipe(rename('styles.css')) // go on doing smth with changed_str
.pipe(gulp.dest('./app/theme/'));
Is there something in gulp to get some transitional result as text, process text with js and pass it to the next pipes? Everywhere I find only solution with reading files directly, this way is pointless for me.