Skip to content

Commit 9847f1d

Browse files
committed
chore(monorepo): Clean up success message icon display
1 parent 20b2bcd commit 9847f1d

File tree

8 files changed

+92
-98
lines changed

8 files changed

+92
-98
lines changed

pnpm-lock.yaml

Lines changed: 85 additions & 91 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/scripts/src/bootstrap.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ try {
4747
// );
4848
// }
4949

50-
echo`${chalk.green(" ✅ Completed monorepo bootstrapping successfully!")}`;
50+
echo`${chalk.green("✅ Completed monorepo bootstrapping successfully!")}`;
5151
} catch (error) {
5252
echo`${chalk.red(
5353
error?.message

tools/scripts/src/build.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ try {
6565
}
6666

6767
echo`${chalk.green(
68-
` ✅ Successfully built the monorepo in ${configuration} mode!`
68+
`✅ Successfully built the monorepo in ${configuration} mode!`
6969
)}`;
7070
} catch (error) {
7171
echo`${chalk.red(error?.message ? error.message : "A failure occurred while building the monorepo")}`;

tools/scripts/src/format.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ try {
6969
);
7070
}
7171

72-
echo`${chalk.green(" ✅ Successfully formatted the monorepo's files")}`;
72+
echo`${chalk.green("✅ Successfully formatted the monorepo's files")}`;
7373
} catch (error) {
7474
echo`${chalk.red(error?.message ? error.message : "A failure occurred while formatting the monorepo")}`;
7575

tools/scripts/src/lint.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ try {
4949
);
5050
}
5151

52-
echo`${chalk.green(" ✅ Successfully linted the monorepo's files")}`;
52+
echo`${chalk.green("✅ Successfully linted the monorepo's files")}`;
5353
} catch (error) {
5454
echo`${chalk.red(error?.message ? error.message : "A failure occurred while linting the monorepo")}`;
5555

tools/scripts/src/nuke.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ try {
9393
);
9494
}
9595

96-
echo`${chalk.green(" ✅ Successfully nuked the cache, node modules, and build folders \n\n")}`;
96+
echo`${chalk.green("✅ Successfully nuked the cache, node modules, and build folders \n\n")}`;
9797
} catch (error) {
9898
echo`${chalk.red(error?.message ? error.message : "A failure occurred while nuking the monorepo")}`;
9999
}

tools/scripts/src/release.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ try {
6060
);
6161
}
6262

63-
echo`${chalk.green(" ✅ Successfully released workspace packages")}`;
63+
echo`${chalk.green("✅ Successfully released workspace packages")}`;
6464
} catch (error) {
6565
echo`${chalk.red(error?.message ? error.message : "A failure occurred while releasing workspace packages")}`;
6666

tools/scripts/src/update-storm.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ try {
6969
);
7070
}
7171

72-
echo`${chalk.green(" ✅ Successfully updated Storm Software package dependencies and re-linked workspace packages")}\n\n`;
72+
echo`${chalk.green("✅ Successfully updated Storm Software package dependencies and re-linked workspace packages")}\n\n`;
7373
} catch (error) {
7474
echo`${chalk.red(
7575
error?.message ??

0 commit comments

Comments
 (0)