@nomac/cli 0.1.2 → 0.1.3

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/package.json +1 -1
  2. package/src/config.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nomac/cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Ship iOS apps to TestFlight and the App Store without a Mac — built for agents.",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",
package/src/config.mjs CHANGED
@@ -3,7 +3,7 @@ import { homedir } from "node:os";
3
3
  import { join } from "node:path";
4
4
 
5
5
  export const DEFAULT_API_URL =
6
- process.env.NOMAC_API_URL ?? "https://www.nomac.app";
6
+ process.env.NOMAC_API_URL ?? "https://nomac.app";
7
7
 
8
8
  const CONFIG_DIR = join(homedir(), ".nomac");
9
9
  const CREDENTIALS = join(CONFIG_DIR, "credentials.json");