vibelet 1.0.4 → 1.0.5
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/vibelet.mjs +3 -3
- package/dist/index.cjs +48 -48
- package/package.json +1 -19
package/bin/vibelet.mjs
CHANGED
|
@@ -814,7 +814,7 @@ function printHelp() {
|
|
|
814
814
|
process.stdout.write(` npx ${packageJson.name} Install/start the daemon, auto-enable remote access, and print a pairing QR code\n`);
|
|
815
815
|
process.stdout.write(` npx ${packageJson.name} start Same as above\n`);
|
|
816
816
|
process.stdout.write(` npx ${packageJson.name} --local Skip the default Cloudflare Tunnel for this run\n`);
|
|
817
|
-
process.stdout.write(` npx ${packageJson.name} --
|
|
817
|
+
process.stdout.write(` npx ${packageJson.name} --force Force a new Cloudflare Tunnel URL\n`);
|
|
818
818
|
process.stdout.write(` npx ${packageJson.name} --relay <url> Use a custom tunnel URL for remote access\n`);
|
|
819
819
|
process.stdout.write(` npx ${packageJson.name} --host <ip> Set the primary host/IP address\n`);
|
|
820
820
|
process.stdout.write(` npx ${packageJson.name} --fallback-hosts <ips> Comma-separated fallback IPs\n`);
|
|
@@ -835,7 +835,7 @@ function printHelp() {
|
|
|
835
835
|
process.stdout.write(` # Want LAN-only pairing for this run?\n`);
|
|
836
836
|
process.stdout.write(` npx ${packageJson.name} --local\n\n`);
|
|
837
837
|
process.stdout.write(` # Need a fresh Cloudflare Tunnel URL?\n`);
|
|
838
|
-
process.stdout.write(` npx ${packageJson.name} --
|
|
838
|
+
process.stdout.write(` npx ${packageJson.name} --force\n\n`);
|
|
839
839
|
process.stdout.write(` # Or bring your own tunnel and pass the URL manually:\n`);
|
|
840
840
|
process.stdout.write(` npx cloudflared tunnel --protocol http2 --url http://localhost:${port}\n`);
|
|
841
841
|
process.stdout.write(` ngrok http ${port}\n`);
|
|
@@ -1210,7 +1210,7 @@ async function main() {
|
|
|
1210
1210
|
if (existingHealth) {
|
|
1211
1211
|
process.stdout.write('Vibelet daemon is already running.\n');
|
|
1212
1212
|
process.stdout.write('Reusing the current runtime so active sessions stay alive.\n');
|
|
1213
|
-
process.stdout.write('Run `npx vibelet restart` to
|
|
1213
|
+
process.stdout.write('Run `npx vibelet restart` to force a full restart.\n\n');
|
|
1214
1214
|
await printPairingSummary(existingHealth);
|
|
1215
1215
|
return;
|
|
1216
1216
|
}
|