@mkterswingman/5mghost-yonder 0.0.28 → 0.0.29

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.
@@ -419,7 +419,16 @@ export async function runSetupCookies(overrides = {}, options = {}) {
419
419
  throw new Error("Playwright runtime is not installed.\nRun: yt-mcp runtime install");
420
420
  }
421
421
  if (!options.headed) {
422
- const imported = await deps.tryImportBrowserCookies(chromium, deps);
422
+ let imported = false;
423
+ try {
424
+ imported = await deps.tryImportBrowserCookies(chromium, deps);
425
+ }
426
+ catch (err) {
427
+ if (!(err instanceof BrowserProfileLockedError) || options.importOnly) {
428
+ throw err;
429
+ }
430
+ deps.log(`${err.message}\n`);
431
+ }
423
432
  if (imported) {
424
433
  return;
425
434
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mkterswingman/5mghost-yonder",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "description": "Internal MCP client with local data tools and remote API proxy",
5
5
  "type": "module",
6
6
  "bin": {