From 97a2adb3e5825d950f75ffc1d16500aa7974446f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9F=A7=91=F0=9F=8F=BB=E2=80=8D=F0=9F=92=BB=20Romain=20M?= =?UTF-8?q?arcadier?= Date: Wed, 26 Jul 2023 16:05:31 +0200 Subject: [PATCH] ensure no color in output --- packages/jsii-calc/bin/run.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/jsii-calc/bin/run.ts b/packages/jsii-calc/bin/run.ts index 2e93dd7455..bfa844c8e6 100755 --- a/packages/jsii-calc/bin/run.ts +++ b/packages/jsii-calc/bin/run.ts @@ -13,7 +13,7 @@ const runCommand = async () => { if (args.includes('delay')) { for (let i = 1; i <= 5; i++) { - console.log('sleeping 1s', i); + console.log(`sleeping 1s ${i}`); // eslint-disable-next-line no-await-in-loop await delay(1000); }