如何将内存流传递给gulp-connect
而不是在硬盘驱动器上创建文件?我想gulp-connect
从内存中提供文件。
gulp.src('style.less')
.pipe(less())
.pipe(rename('style.css'))
.pipe(gulp.dest('dist')) // How prevent creating file on a hard drive
.pipe(connect.reload()); // and serve files from memory?