@agenticmail/core 0.5.20 → 0.5.21

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.
Files changed (2) hide show
  1. package/dist/index.js +13 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -6330,6 +6330,19 @@ var DependencyInstaller = class {
6330
6330
  );
6331
6331
  if (brewResult.exitCode === 0) {
6332
6332
  this.onProgress("__progress__:45:Mail server engine installed!");
6333
+ try {
6334
+ execSync(`osascript -e 'quit app "Docker Desktop"' 2>/dev/null`, { timeout: 5e3, stdio: "ignore" });
6335
+ } catch {
6336
+ }
6337
+ try {
6338
+ execSync(`osascript -e 'quit app "Docker"' 2>/dev/null`, { timeout: 5e3, stdio: "ignore" });
6339
+ } catch {
6340
+ }
6341
+ try {
6342
+ execSync("pkill -f Docker.app 2>/dev/null", { timeout: 5e3, stdio: "ignore" });
6343
+ } catch {
6344
+ }
6345
+ await new Promise((r) => setTimeout(r, 3e3));
6333
6346
  const appPath = this.findDockerApp();
6334
6347
  if (appPath) {
6335
6348
  await this.setupExistingDockerApp(appPath);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenticmail/core",
3
- "version": "0.5.20",
3
+ "version": "0.5.21",
4
4
  "description": "Core SDK for AgenticMail \u2014 email, SMS, and phone number access for AI agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",