We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f87155 commit b67c0faCopy full SHA for b67c0fa
1 file changed
scripts/src/tasks/lintRepo.ts
@@ -65,8 +65,6 @@ async function execute() {
65
*/
66
async function execCommand(cmdName: string, command: string): Promise<boolean> {
67
const startTime = performance.now();
68
- const cmdText = `${styleText('cyan', cmdName)}: `;
69
- console.log(`${cmdText}${styleText(['green', 'bold'], 'starting')}`);
70
return new Promise((resolve) => {
71
exec(command, (error, stdout, stderr) => {
72
const success = error == null;
0 commit comments