From 2742541dc7099d5b50a00b1c55f8f58b860ed2bc Mon Sep 17 00:00:00 2001 From: Logan McAnsh Date: Mon, 30 Jan 2023 11:38:42 -0500 Subject: [PATCH] chore: update log Signed-off-by: Logan McAnsh --- __scripts/test.mjs | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/__scripts/test.mjs b/__scripts/test.mjs index bcc43b63f..cf6171ced 100755 --- a/__scripts/test.mjs +++ b/__scripts/test.mjs @@ -83,9 +83,7 @@ for (const example of examples) { const install = await getCommand(detected, "install", ["--silent"]); const installArgs = install.split(" ").slice(1, -1); - console.log( - `Installing ${example} with ${detected} ${installArgs.join(" ")}` - ); + console.log(`📥 Installing ${example} with ${install}`); const installResult = await execa(detected, installArgs, options); if (installResult.exitCode) { @@ -115,7 +113,7 @@ for (const example of examples) { const build = await getCommand(detected, "run", ["build"]); const buildArgs = build.split(" ").slice(1); - console.log(`Building ${example} with ${detected} ${buildArgs.join(" ")}`); + console.log(`📦 Building ${example} with ${build}`); const buildResult = await execa(detected, buildArgs, options); if (buildResult.exitCode) { @@ -126,9 +124,7 @@ for (const example of examples) { const typecheck = await getCommand(detected, "run", ["typecheck"]); const typecheckArgs = typecheck.split(" ").slice(1); - console.log( - `Typechecking ${example} with ${detected} ${typecheckArgs.join(" ")}` - ); + console.log(`🕵️ Typechecking ${example} with ${typecheck}`); const typecheckResult = await execa(detected, typecheckArgs, options); if (typecheckResult.exitCode) {