Greetings!
I have a task set up in my gulpfile.js
as shown below:
const gulp = require('gulp');
const sass = require('gulp-sass');
gulp.task('sass', function(){
return gulp.src('sass/*.scss')
.pipe(sass())
.pipe(gulp.dest('../assets/css/'));
});
When I attempt to run gulp sass
, I receive the following information:
Starting 'sass'...
Finished 'sass' after 20 ms
However, my css file is not getting created (I have already created the scss
file).
What could be causing this issue?