mirror of
https://github.com/actions/stale.git
synced 2025-12-29 20:37:30 +08:00
12 lines
351 B
TypeScript
12 lines
351 B
TypeScript
|
|
import chalk from 'chalk';
|
||
|
|
|
||
|
|
// Disabled the colors to:
|
||
|
|
// - improve the performances
|
||
|
|
// - avoid to mock chalk
|
||
|
|
// - avoid to have failing tests when testing the logs due to the extra text the log message will contains
|
||
|
|
//
|
||
|
|
// Note:
|
||
|
|
// If you need to debug the log colours you can remove this line temporarily
|
||
|
|
// But some tests will fail
|
||
|
|
chalk.level = 0;
|