Answer the question
In order to leave comments, you need to log in
What is wrong with gulp, why is it not connecting?
Uploaded all files through the console to the FreeJob folder
Using the gulpfile.js file, I track all css files in the src/css directory
var
gulp = require("gulp"),
livereload = require("gulp-livereload");
gulp.task("reload-css", function() {
gulp.src('./src/css/*.css')
.pipe(livereload());
});
gulp.task("default", function() {
livereload.listen();
gulp.watch('./src/css/*.css', ['reload-css']);
});
Answer the question
In order to leave comments, you need to log in
gulp.watch('./src/css/*.css', gulp.series('reload-css'));
What version of gallp?
If third, then listen to the webcast
https://learn.javascript.ru/screencast/gulp
if 4, then read the documentation, the syntax has changed there and you cannot transfer the list of tasks as an array
https://gulpjs.com/docs/en /api/watch
The error clearly tells you that watch is waiting for a function as the second argument
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question