@uniformdev/context 18.0.1-alpha.7 → 18.1.1-alpha.11
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 +3 -3
- package/dist/cli/cli.mjs +3 -3
- package/package.json +3 -3
package/dist/cli/cli.js
CHANGED
@@ -19273,10 +19273,10 @@ async function createArraySyncEngineDataSource({
|
|
19273
19273
|
}
|
19274
19274
|
var import_chalk = __toESM2(require_source());
|
19275
19275
|
function withApiOptions(yargs) {
|
19276
|
-
var _a2, _b2;
|
19276
|
+
var _a2, _b2, _c2;
|
19277
19277
|
return yargs.option("apiKey", {
|
19278
|
-
describe: "Uniform API key. Defaults to
|
19279
|
-
default: (_b2 = (_a2 = process.env.
|
19278
|
+
describe: "Uniform API key. Defaults to UNIFORM_CLI_API_KEY or UNIFORM_API_KEY env. Supports dotenv.",
|
19279
|
+
default: (_c2 = (_b2 = (_a2 = process.env.UNIFORM_CLI_API_KEY) != null ? _a2 : process.env.CANVAS_CLI_API_KEY) != null ? _b2 : process.env.UPM_CLI_API_KEY) != null ? _c2 : process.env.UNIFORM_API_KEY,
|
19280
19280
|
demandOption: true,
|
19281
19281
|
type: "string"
|
19282
19282
|
}).option("apiHost", {
|
package/dist/cli/cli.mjs
CHANGED
@@ -19270,10 +19270,10 @@ async function createArraySyncEngineDataSource({
|
|
19270
19270
|
}
|
19271
19271
|
var import_chalk = __toESM2(require_source());
|
19272
19272
|
function withApiOptions(yargs) {
|
19273
|
-
var _a2, _b2;
|
19273
|
+
var _a2, _b2, _c2;
|
19274
19274
|
return yargs.option("apiKey", {
|
19275
|
-
describe: "Uniform API key. Defaults to
|
19276
|
-
default: (_b2 = (_a2 = process.env.
|
19275
|
+
describe: "Uniform API key. Defaults to UNIFORM_CLI_API_KEY or UNIFORM_API_KEY env. Supports dotenv.",
|
19276
|
+
default: (_c2 = (_b2 = (_a2 = process.env.UNIFORM_CLI_API_KEY) != null ? _a2 : process.env.CANVAS_CLI_API_KEY) != null ? _b2 : process.env.UPM_CLI_API_KEY) != null ? _c2 : process.env.UNIFORM_API_KEY,
|
19277
19277
|
demandOption: true,
|
19278
19278
|
type: "string"
|
19279
19279
|
}).option("apiHost", {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@uniformdev/context",
|
3
|
-
"version": "18.
|
3
|
+
"version": "18.1.1-alpha.11+c81a052e2",
|
4
4
|
"description": "Uniform Context core package",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"main": "./dist/index.js",
|
@@ -59,7 +59,7 @@
|
|
59
59
|
"devDependencies": {
|
60
60
|
"@types/js-cookie": "3.0.2",
|
61
61
|
"@types/yargs": "17.0.19",
|
62
|
-
"@uniformdev/cli": "18.
|
62
|
+
"@uniformdev/cli": "18.1.1-alpha.11+c81a052e2",
|
63
63
|
"benny": "3.7.1",
|
64
64
|
"yargs": "17.6.2"
|
65
65
|
},
|
@@ -76,5 +76,5 @@
|
|
76
76
|
"publishConfig": {
|
77
77
|
"access": "public"
|
78
78
|
},
|
79
|
-
"gitHead": "
|
79
|
+
"gitHead": "c81a052e2c13c6d3d786d7030f11a7724a52b2da"
|
80
80
|
}
|