I am doing gulpfile to update css for my site and here is the error, what should I do? Code:
var
 clean = require("del")
 gulp  = require("gulp"),
 livereload = require("gulp-livereload");
gulp.task("reload-css", function() {
 gulp.src('./src/*.css')
 .pipe(reload-css())
 .pipe(gulp.dest('css'))
 .pipe(livereload());
});
gulp.task("default", function() {
 gulp.task('watch', function() {
 livereload.listen();
 gulp.watch('./src/*.css', ['reload-css'])});
});
Using gulpfile D:\DenverServer\home\test1.ru\www\gulpfile.js
[23:03:53] Starting 'default'...
[23:03:53] The following tasks did not complete: default
[23:03:53] Did you forget to signal async completion?
 
     
    