dankgrinder 7.76.0 → 7.77.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/grinder.js +3 -2
- package/package.json +1 -1
package/lib/grinder.js
CHANGED
|
@@ -3052,9 +3052,10 @@ async function start(apiKey, apiUrl, opts = {}) {
|
|
|
3052
3052
|
sigintHandled = true;
|
|
3053
3053
|
shutdownCalled = true;
|
|
3054
3054
|
setDashboardActive(false);
|
|
3055
|
-
process.stdout.write(
|
|
3055
|
+
process.stdout.write('\x1b[?25h'); // show cursor
|
|
3056
3056
|
|
|
3057
|
-
const
|
|
3057
|
+
const tw = process.stdout.columns || 80;
|
|
3058
|
+
const sepBar = rgb(139, 92, 246) + c.bold + '─'.repeat(tw - 4) + c.reset;
|
|
3058
3059
|
console.log('');
|
|
3059
3060
|
console.log(` ${rgb(251, 191, 36)}${c.bold}Session Summary${c.reset}`);
|
|
3060
3061
|
console.log(sepBar);
|