I'm trying to pipe my compiled .css file to same directory as its original .scss one
gulp.task('sass', function() {
return gulp.src([
appDir + '/*.scss',
appDir + '/**/*.scss'
])
.pipe(sass())
.pipe(gulp.dest(..));
});
I can't figure out how to set gulp.dest to be the same as the original .scss file so I have both this and .css file in the same folder.