Everytime I run gulp anything, I get a assertion error. – Task function must be specified

Gulp 4.0 has changed the way that tasks should be defined if the task depends on another task to execute. The list parameter has been deprecated. An example from your gulpfile.js would be: Instead of the list parameter they have introduced gulp.series() and gulp.parallel(). This task should be changed to something like this: I’m not an expert in … Read more