@uniformdev/cli 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/sync/index.d.ts +1 -0
- package/dist/sync/index.js +6 -1
- package/dist/sync/index.mjs +6 -1
- package/package.json +3 -3
package/dist/sync/index.d.ts
CHANGED
package/dist/sync/index.js
CHANGED
|
@@ -1653,10 +1653,15 @@ function withApiOptions(yargs) {
|
|
|
1653
1653
|
demandOption: true,
|
|
1654
1654
|
type: "string"
|
|
1655
1655
|
}).option("apiHost", {
|
|
1656
|
-
describe: "Uniform host. Defaults to UNIFORM_CLI_BASE_URL env or https://uniform.app. Supports dotenv.",
|
|
1656
|
+
describe: "Uniform host. Defaults to UNIFORM_CLI_BASE_URL env var or https://uniform.app. Supports dotenv.",
|
|
1657
1657
|
default: process.env.UNIFORM_CLI_BASE_URL || "https://uniform.app",
|
|
1658
1658
|
demandOption: true,
|
|
1659
1659
|
type: "string"
|
|
1660
|
+
}).option("edgeApiHost", {
|
|
1661
|
+
describe: "Uniform edge host. Defaults to UNIFORM_CLI_BASE_EDGE_URL env var or https://uniform.global. Supports dotenv.",
|
|
1662
|
+
default: process.env.UNIFORM_CLI_BASE_EDGE_URL || "https://uniform.global",
|
|
1663
|
+
demandOption: true,
|
|
1664
|
+
type: "string"
|
|
1660
1665
|
}).option("proxy", {
|
|
1661
1666
|
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.",
|
|
1662
1667
|
default: process.env.HTTPS_PROXY || process.env.https_proxy || process.env.ALL_PROXY || process.env.all_proxy,
|
package/dist/sync/index.mjs
CHANGED
|
@@ -66,10 +66,15 @@ function withApiOptions(yargs) {
|
|
|
66
66
|
demandOption: true,
|
|
67
67
|
type: "string"
|
|
68
68
|
}).option("apiHost", {
|
|
69
|
-
describe: "Uniform host. Defaults to UNIFORM_CLI_BASE_URL env or https://uniform.app. Supports dotenv.",
|
|
69
|
+
describe: "Uniform host. Defaults to UNIFORM_CLI_BASE_URL env var or https://uniform.app. Supports dotenv.",
|
|
70
70
|
default: process.env.UNIFORM_CLI_BASE_URL || "https://uniform.app",
|
|
71
71
|
demandOption: true,
|
|
72
72
|
type: "string"
|
|
73
|
+
}).option("edgeApiHost", {
|
|
74
|
+
describe: "Uniform edge host. Defaults to UNIFORM_CLI_BASE_EDGE_URL env var or https://uniform.global. Supports dotenv.",
|
|
75
|
+
default: process.env.UNIFORM_CLI_BASE_EDGE_URL || "https://uniform.global",
|
|
76
|
+
demandOption: true,
|
|
77
|
+
type: "string"
|
|
73
78
|
}).option("proxy", {
|
|
74
79
|
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.",
|
|
75
80
|
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/cli",
|
|
3
|
-
"version": "18.1.2-alpha.
|
|
3
|
+
"version": "18.1.2-alpha.7+682b9aac6",
|
|
4
4
|
"description": "Uniform command line interface tool",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./cli.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"format": "prettier --write \"src/**/*.{js,ts,tsx}\""
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@uniformdev/uniform-new": "18.1.2-alpha.
|
|
37
|
+
"@uniformdev/uniform-new": "18.1.2-alpha.7+682b9aac6",
|
|
38
38
|
"diff": "^5.0.0",
|
|
39
39
|
"dotenv": "^16.0.3",
|
|
40
40
|
"https-proxy-agent": "^5.0.1",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"publishConfig": {
|
|
59
59
|
"access": "public"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "682b9aac6143d5f462a7126f4ceab55a7c7d0c09"
|
|
62
62
|
}
|