Skip to content

Commit

Permalink
chore: update log
Browse files Browse the repository at this point in the history
Signed-off-by: Logan McAnsh <[email protected]>
  • Loading branch information
mcansh committed Jan 30, 2023
1 parent 1ad34ac commit 2742541
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions __scripts/test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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) {
Expand All @@ -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) {
Expand Down

0 comments on commit 2742541

Please sign in to comment.