I'm having trouble directing my compiled .css file to the same directory as its original .scss version.
gulp.task('sass', function() {
return gulp.src([
appDir + '/*.scss',
appDir + '/**/*.scss'
])
.pipe(sass())
.pipe(gulp.dest(..));
});
I'm unsure how to specify gulp.dest to save the compiled file in the same location as the original .scss file, so that both files are present in the same folder.