Home

Gulp task never finishes, says Starting... what to do?

Problem

Gulp task not finishing, stuck at Starting a task only...

Explanation

CLI showing Starting <taskName>.. but not finishing it

Solution

in the function, you should take a callback and execute it at the end like

function taskName(cb) {
  //your code
  cb();
}


Last Updated on

Next Post: GraphProtocol: TS2322 null assignment in Subgraph →

Comments