How can I apply a condition argument based on if gulp is watching or not?
gulp.task('styles', function(){
return gulp.src('sass/**/*.scss')
.pipe(sass())
if (isWatching) {
// gulp.dest to the .tmp directory if "gulp watch"
.pipe(gulp.dest('.tmp/css/'));
} else {
// gulp.dest to the distribution directory if "gulp" (or anything else)
.pipe(gulp.dest('dist'));
}
});