pace
pace copied to clipboard
Scrolling console...
Any chance we could get a scrolling console under the progress bar, so we can, while still using the progress bar, see the output of any console.log items left in for debugging?
as a workaround, change this :
Pace.prototype.clear = function clear() {
this.charm.erase('line').up(1).erase('line').up(1).erase('line').write("\r");
};
to
Pace.prototype.clear = function clear() {
this.charm.erase('line').up(2).erase('line').up(1).erase('line').write("\r");
};