Hide the cursor in the terminal, only executed in local environments.
()
| 115 | |
| 116 | /** Hide the cursor in the terminal, only executed in local environments. */ |
| 117 | private hideCursor() { |
| 118 | if (!IS_CI) { |
| 119 | process.stdout.write(hideCursor); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | /** Resume showing the cursor in the terminal, only executed in local environments. */ |
| 124 | private showCursor() { |