I have a gulp task that is attempting to convert .scss files into .css files (using gulp-ruby-sass) and then place the resulting .css file into the same place it found the o
if you want to save all files in their own path in the dist folder
const media = () => { return gulp.src('./src/assets/media/**/*') .pipe(gulp.dest(file => file.base.replace('src', 'dist')) ) } const watch = () => { gulp.watch( "./src/**/*", media ); };