unbrowse 2.1.2 → 2.1.4

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 CHANGED
@@ -1302,7 +1302,7 @@ async function handleMessage(msg, unbrowseBin, timeoutMs) {
1302
1302
  loadEnv({ quiet: true });
1303
1303
  loadEnv({ path: ".env.runtime", quiet: true });
1304
1304
  var BASE_URL = process.env.UNBROWSE_URL || "http://localhost:6969";
1305
- var CLI_CLIENT_ID = process.env.UNBROWSE_CLIENT_ID || `cli-${process.ppid || process.pid}`;
1305
+ var CLI_CLIENT_ID = process.env.UNBROWSE_CLIENT_ID || "cli-local";
1306
1306
  function parseArgs(argv) {
1307
1307
  const raw = argv.slice(2);
1308
1308
  const command = raw[0] && !raw[0].startsWith("--") ? raw[0] : "help";