@melaya/runner 1.0.5 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +20 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -25,8 +25,27 @@ const program = new Command()
|
|
|
25
25
|
.option("--verbose", "Show detailed logs", false)
|
|
26
26
|
.parse(process.argv);
|
|
27
27
|
const opts = program.opts();
|
|
28
|
+
const c1 = chalk.hex("#A78BFA").bold;
|
|
29
|
+
const c2 = chalk.hex("#8B5CF6").bold;
|
|
30
|
+
const c3 = chalk.hex("#7C6FF0").bold;
|
|
31
|
+
const c4 = chalk.hex("#6366F1").bold;
|
|
32
|
+
const c5 = chalk.hex("#22D3EE").bold;
|
|
33
|
+
const c6 = chalk.hex("#10B0F0").bold;
|
|
34
|
+
const br = chalk.hex("#22D3EE");
|
|
35
|
+
const dm = chalk.hex("#444");
|
|
36
|
+
const BANNER = `
|
|
37
|
+
${c1("███╗ ███╗")} ${c2("███████╗")} ${c3("██╗")} ${c4("█████╗")} ${c5("██╗ ██╗")} ${c6("█████╗")}
|
|
38
|
+
${c1("████╗ ████║")} ${c2("██╔════╝")} ${c3("██║")} ${c4("██╔══██╗")} ${c5("╚██╗ ██╔╝")} ${c6("██╔══██╗")}
|
|
39
|
+
${c1("██╔████╔██║")} ${c2("█████╗")} ${c3("██║")} ${c4("███████║")} ${c5("╚████╔╝")} ${c6("███████║")}
|
|
40
|
+
${c1("██║╚██╔╝██║")} ${c2("██╔══╝")} ${c3("██║")} ${c4("██╔══██║")} ${c5("╚██╔╝")} ${c6("██╔══██║")}
|
|
41
|
+
${c1("██║ ╚═╝ ██║")} ${c2("███████╗")} ${c3("███████╗")} ${c4("██║ ██║")} ${c5("██║")} ${c6("██║ ██║")}
|
|
42
|
+
${c1("╚═╝ ╚═╝")} ${c2("╚══════╝")} ${c3("╚══════╝")} ${c4("╚═╝ ╚═╝")} ${c5("╚═╝")} ${c6("╚═╝ ╚═╝")}
|
|
43
|
+
|
|
44
|
+
${br("▸")} ${dm("Local AI Pipeline Runner")} ${chalk.hex("#333")("v1.0.7")}
|
|
45
|
+
${br("─────────────────────────────────────────────────────")}
|
|
46
|
+
`;
|
|
28
47
|
async function main() {
|
|
29
|
-
console.log(
|
|
48
|
+
console.log(BANNER);
|
|
30
49
|
// Detect Python
|
|
31
50
|
const python = await findPython();
|
|
32
51
|
if (!python) {
|