@bobfrankston/mailx 1.0.423 → 1.0.425

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/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@bobfrankston/mailx",
3
- "version": "1.0.423",
3
+ "version": "1.0.425",
4
4
  "description": "Local-first email client with IMAP sync and standalone native app",
5
5
  "type": "module",
6
6
  "main": "bin/mailx.js",
7
7
  "bin": {
8
- "mailx": "bin/mailx.js"
8
+ "mailx": "bin/mailx.js",
9
+ "bobmail": "bin/mailx.js"
9
10
  },
10
11
  "workspaces": [
11
12
  "packages/mailx-types",
@@ -14,8 +14,6 @@ export function selectHost() {
14
14
  const requested = (process.env.MAILX_HOST || "").toLowerCase();
15
15
  if (requested === "msger" || requested === "msgview")
16
16
  return requested;
17
- if (process.platform === "darwin")
18
- return "msgview";
19
17
  return "msger";
20
18
  }
21
19
  const _hostName = selectHost();
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/mailx-host",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Host abstraction for mailx — dispatches to msger or msgview",
5
5
  "type": "module",
6
6
  "main": "index.js",