bloby-bot 0.47.12 → 0.47.14
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 +3 -1
- package/package.json +1 -1
- package/supervisor/chat/OnboardWizard.tsx +2 -2
package/bin/cli.js
CHANGED
|
@@ -1524,8 +1524,10 @@ async function update() {
|
|
|
1524
1524
|
// app permanently broken (e.g. crash loop on a new import). Treat as fatal,
|
|
1525
1525
|
// surface the npm output so the cause is debuggable, and don't claim success.
|
|
1526
1526
|
try {
|
|
1527
|
-
execSync('npm install --omit=dev', { cwd: DATA_DIR, stdio: '
|
|
1527
|
+
execSync('npm install --omit=dev', { cwd: DATA_DIR, stdio: 'pipe', timeout: 300_000 });
|
|
1528
1528
|
} catch (e) {
|
|
1529
|
+
if (e.stdout) process.stderr.write(e.stdout);
|
|
1530
|
+
if (e.stderr) process.stderr.write(e.stderr);
|
|
1529
1531
|
console.log(`\n ${c.red}✗${c.reset} npm install failed during update: ${e.message}`);
|
|
1530
1532
|
console.log(` Your install is now partially upgraded. To recover:\n cd ~/.bloby && npm install --omit=dev\n`);
|
|
1531
1533
|
fs.rmSync(tmpDir, { recursive: true, force: true });
|
package/package.json
CHANGED
|
@@ -1709,8 +1709,8 @@ export default function OnboardWizard({ onComplete, isInitialSetup = false, onSa
|
|
|
1709
1709
|
</h1>
|
|
1710
1710
|
<p className="text-white/40 text-[13px] mt-1.5 leading-relaxed">
|
|
1711
1711
|
{portalExists
|
|
1712
|
-
? "Your
|
|
1713
|
-
: "You'll need this password to access your
|
|
1712
|
+
? "Your Bloby Chat password is already set — you can keep it as-is or change it below."
|
|
1713
|
+
: "You'll need this password to access your Bloby Chat. Keep it safe — anyone with your URL will need it to log in."}
|
|
1714
1714
|
</p>
|
|
1715
1715
|
|
|
1716
1716
|
{/* ── Existing-password collapsed state: just a "Change password" pill ── */}
|