This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Description
Why not add an optional parameter (with default=1) to the beep function, so that we can play the "beep" multiple times (to keep attention, ex. when there is an error on watch)?
So instead of:
var onError = function (err) {
gutil.beep();
gutil.beep();
gutil.beep();
gutil.log(gutil.colors.red("Error: ") + err);
};
one could simply write:
var onError = function (err) {
gutil.beep(3);
gutil.log(gutil.colors.red("Error: ") + err);
};