@uniformdev/cli 18.1.2-alpha.7 → 18.2.0
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 +0 -1
- package/dist/sync/index.js +1 -6
- package/dist/sync/index.mjs +1 -6
- package/package.json +3 -3
package/dist/sync/index.d.ts
CHANGED
package/dist/sync/index.js
CHANGED
|
@@ -1653,15 +1653,10 @@ 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
|
|
1656
|
+
describe: "Uniform host. Defaults to UNIFORM_CLI_BASE_URL env 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"
|
|
1665
1660
|
}).option("proxy", {
|
|
1666
1661
|
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.",
|
|
1667
1662
|
default: process.env.HTTPS_PROXY || process.env.https_proxy || process.env.ALL_PROXY || process.env.all_proxy,
|
package/dist/sync/index.mjs
CHANGED
|
@@ -66,15 +66,10 @@ 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
|
|
69
|
+
describe: "Uniform host. Defaults to UNIFORM_CLI_BASE_URL env 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"
|
|
78
73
|
}).option("proxy", {
|
|
79
74
|
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.",
|
|
80
75
|
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.
|
|
3
|
+
"version": "18.2.0",
|
|
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.
|
|
37
|
+
"@uniformdev/uniform-new": "18.2.0",
|
|
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": "946d96f5a3ebd69cfc1b4fcc003dea75af4480af"
|
|
62
62
|
}
|