()
| 282 | ); |
| 283 | |
| 284 | function ensureCwdIsProjectRoot() { |
| 285 | if (process.cwd() !== root) { |
| 286 | process.chdir(root); |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | function canColorize() { |
| 291 | // Loading it lazily to avoid breaking `NODE_REGENERATE_SNAPSHOTS`. |
no test coverage detected
searching dependent graphs…