@uniformdev/project-map 18.1.2-alpha.4 → 18.1.2-alpha.7

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/cli.js CHANGED
@@ -17833,10 +17833,15 @@ function withApiOptions(yargs) {
17833
17833
  demandOption: true,
17834
17834
  type: "string"
17835
17835
  }).option("apiHost", {
17836
- describe: "Uniform host. Defaults to UNIFORM_CLI_BASE_URL env or https://uniform.app. Supports dotenv.",
17836
+ describe: "Uniform host. Defaults to UNIFORM_CLI_BASE_URL env var or https://uniform.app. Supports dotenv.",
17837
17837
  default: process.env.UNIFORM_CLI_BASE_URL || "https://uniform.app",
17838
17838
  demandOption: true,
17839
17839
  type: "string"
17840
+ }).option("edgeApiHost", {
17841
+ describe: "Uniform edge host. Defaults to UNIFORM_CLI_BASE_EDGE_URL env var or https://uniform.global. Supports dotenv.",
17842
+ default: process.env.UNIFORM_CLI_BASE_EDGE_URL || "https://uniform.global",
17843
+ demandOption: true,
17844
+ type: "string"
17840
17845
  }).option("proxy", {
17841
17846
  describe: "HTTPS proxy to use for Uniform API calls. Defaults to HTTPS_PROXY, https_proxy, ALL_PROXY, or all_proxy env vars (in that order). Supports dotenv.",
17842
17847
  default: process.env.HTTPS_PROXY || process.env.https_proxy || process.env.ALL_PROXY || process.env.all_proxy,
package/dist/cli/cli.mjs CHANGED
@@ -17805,10 +17805,15 @@ function withApiOptions(yargs) {
17805
17805
  demandOption: true,
17806
17806
  type: "string"
17807
17807
  }).option("apiHost", {
17808
- describe: "Uniform host. Defaults to UNIFORM_CLI_BASE_URL env or https://uniform.app. Supports dotenv.",
17808
+ describe: "Uniform host. Defaults to UNIFORM_CLI_BASE_URL env var or https://uniform.app. Supports dotenv.",
17809
17809
  default: process.env.UNIFORM_CLI_BASE_URL || "https://uniform.app",
17810
17810
  demandOption: true,
17811
17811
  type: "string"
17812
+ }).option("edgeApiHost", {
17813
+ describe: "Uniform edge host. Defaults to UNIFORM_CLI_BASE_EDGE_URL env var or https://uniform.global. Supports dotenv.",
17814
+ default: process.env.UNIFORM_CLI_BASE_EDGE_URL || "https://uniform.global",
17815
+ demandOption: true,
17816
+ type: "string"
17812
17817
  }).option("proxy", {
17813
17818
  describe: "HTTPS proxy to use for Uniform API calls. Defaults to HTTPS_PROXY, https_proxy, ALL_PROXY, or all_proxy env vars (in that order). Supports dotenv.",
17814
17819
  default: process.env.HTTPS_PROXY || process.env.https_proxy || process.env.ALL_PROXY || process.env.all_proxy,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/project-map",
3
- "version": "18.1.2-alpha.4+e9d268bce",
3
+ "version": "18.1.2-alpha.7+682b9aac6",
4
4
  "description": "Uniform Project Map",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -46,17 +46,17 @@
46
46
  "/dist"
47
47
  ],
48
48
  "dependencies": {
49
- "@uniformdev/canvas": "18.1.2-alpha.4+e9d268bce",
50
- "@uniformdev/context": "18.1.2-alpha.4+e9d268bce",
49
+ "@uniformdev/canvas": "18.1.2-alpha.7+682b9aac6",
50
+ "@uniformdev/context": "18.1.2-alpha.7+682b9aac6",
51
51
  "p-limit": "^3.1.0"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/yargs": "17.0.20",
55
- "@uniformdev/cli": "18.1.2-alpha.4+e9d268bce",
55
+ "@uniformdev/cli": "18.1.2-alpha.7+682b9aac6",
56
56
  "yargs": "17.6.2"
57
57
  },
58
58
  "publishConfig": {
59
59
  "access": "public"
60
60
  },
61
- "gitHead": "e9d268bcef28fc22632f4968ca988e3b0b92d146"
61
+ "gitHead": "682b9aac6143d5f462a7126f4ceab55a7c7d0c09"
62
62
  }