how to make Gulp stop watching files

gulp, javascript

Solution

It's not a gulp thing. Gulp is just running as a never ending process.

The way to abort a process is Ctrl+C.

Problem

How do you stop files from being watched? I have not seen the method in the docs which seems a bit odd to me.

Original source