Skip to content

Commit bde3849

Browse files
committed
style: add symbol-based text at the beginning of a script
1 parent 8bddb4f commit bde3849

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

electron-app/build.mjs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,13 +222,21 @@ scriptArgs.forEach((arg) => {
222222
});
223223

224224
const specificTargets = Object.keys(CONFIG).filter((key) =>
225-
scriptArgs.includes(`--${key}`)
225+
scriptArgs.includes(`--${key}`),
226226
);
227227
const targetsToBuild =
228228
specificTargets.length > 0 ? specificTargets : Object.keys(CONFIG);
229229

230230
// --- Main Execution ---
231231

232+
console.log(`
233+
______ __ ______ _____ ____________ __
234+
___ / / /____ ________________________ /___________________ __ / / /__ __ \\_ | / /
235+
__ /_/ /__ / / /__ __ \\ _ \\_ ___/_ /_ __ \\ __ \\__ __ \\ _ / / /__ /_/ /_ | / /
236+
_ __ / _ /_/ /__ /_/ / __/ / _ / / /_/ / /_/ /_ /_/ / / /_/ / _ ____/__ |/ /
237+
/_/ /_/ _\\__, / _ .___/\\___//_/ /_/ \\____/\\____/_ .___/ \\____/ /_/ _____/
238+
/____/ /_/ /_/ `);
239+
232240
logger.header("Hyperloop Control Station Build");
233241

234242
(async () => {
@@ -256,7 +264,7 @@ logger.header("Hyperloop Control Station Build");
256264
logger.info("Finalizing Electron...");
257265
run(
258266
"pnpm --filter hyperloop-control-station install --frozen-lockfile",
259-
__dirname
267+
__dirname,
260268
);
261269
}
262270

0 commit comments

Comments
 (0)