bloby-bot 0.17.2 → 0.17.3
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/bin/cli.js +9 -7
- package/package.json +1 -1
- package/scripts/postinstall.js +2 -2
package/bin/cli.js
CHANGED
|
@@ -524,13 +524,15 @@ class Stepper {
|
|
|
524
524
|
|
|
525
525
|
function banner() {
|
|
526
526
|
console.log(`
|
|
527
|
-
${c.blue}${c.bold}
|
|
528
|
-
${c.blue}${c.bold}
|
|
529
|
-
${c.blue}${c.bold}
|
|
530
|
-
${c.blue}${c.bold}
|
|
531
|
-
${c.pink}${c.bold}
|
|
532
|
-
${c.pink}${c.bold}
|
|
533
|
-
${c.pink}${c.bold}
|
|
527
|
+
${c.blue}${c.bold} ${c.reset}
|
|
528
|
+
${c.blue}${c.bold} ▄▄▄ ▄▄ ${c.reset}
|
|
529
|
+
${c.blue}${c.bold} ██▀▀█▄ ██ █▄ ${c.reset}
|
|
530
|
+
${c.blue}${c.bold} ██ ▄█▀ ██ ██ ${c.reset}
|
|
531
|
+
${c.pink}${c.bold} ██▀▀█▄ ██ ▄███▄ ████▄ ██ ██${c.reset}
|
|
532
|
+
${c.pink}${c.bold} ▄ ██ ▄█ ██ ██ ██ ██ ██ ██▄██${c.reset}
|
|
533
|
+
${c.pink}${c.bold} ▀██████▀▄██▄▀███▀▄████▀▄▄▀██▀${c.reset}
|
|
534
|
+
${c.pink}${c.bold} ██ ${c.reset}
|
|
535
|
+
${c.pink}${c.bold} ▀▀▀ ${c.reset}
|
|
534
536
|
${c.dim}v${pkg.version} · Self-hosted AI agent${c.reset}`);
|
|
535
537
|
}
|
|
536
538
|
|
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -71,10 +71,10 @@ for (const file of CODE_FILES) {
|
|
|
71
71
|
try {
|
|
72
72
|
execSync('npm install --omit=dev', {
|
|
73
73
|
cwd: BLOBY_HOME,
|
|
74
|
-
stdio: '
|
|
74
|
+
stdio: 'inherit',
|
|
75
75
|
});
|
|
76
76
|
} catch {
|
|
77
|
-
|
|
77
|
+
console.error('Warning: failed to install dependencies in ~/.bloby/ — run "cd ~/.bloby && npm install" manually');
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
// ── Install workspace dependencies (isolated from system deps) ──
|