eas-cli 13.3.0 → 13.4.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/README.md +299 -165
- package/build/build/build.js +3 -3
- package/build/build/evaluateConfigWithEnvVarsAsync.js +18 -2
- package/build/commandUtils/flags.d.ts +5 -4
- package/build/commandUtils/flags.js +6 -8
- package/build/commands/env/create.d.ts +6 -6
- package/build/commands/env/create.js +27 -28
- package/build/commands/env/delete.d.ts +5 -5
- package/build/commands/env/delete.js +15 -13
- package/build/commands/env/exec.d.ts +0 -1
- package/build/commands/env/exec.js +1 -2
- package/build/commands/env/get.d.ts +5 -5
- package/build/commands/env/get.js +16 -13
- package/build/commands/env/link.d.ts +1 -1
- package/build/commands/env/link.js +12 -13
- package/build/commands/env/list.d.ts +5 -5
- package/build/commands/env/list.js +14 -12
- package/build/commands/env/pull.d.ts +1 -2
- package/build/commands/env/pull.js +8 -9
- package/build/commands/env/push.d.ts +1 -2
- package/build/commands/env/push.js +9 -10
- package/build/commands/env/unlink.d.ts +1 -1
- package/build/commands/env/unlink.js +11 -10
- package/build/commands/env/update.d.ts +6 -6
- package/build/commands/env/update.js +18 -15
- package/build/commands/secret/create.d.ts +1 -0
- package/build/commands/secret/create.js +3 -0
- package/build/commands/secret/delete.d.ts +1 -0
- package/build/commands/secret/delete.js +3 -0
- package/build/commands/secret/list.d.ts +1 -0
- package/build/commands/secret/list.js +3 -0
- package/build/commands/secret/push.d.ts +1 -0
- package/build/commands/secret/push.js +3 -0
- package/build/commands/update/index.js +19 -2
- package/build/graphql/generated.d.ts +140 -26
- package/build/graphql/generated.js +2 -0
- package/build/graphql/mutations/EnvironmentVariableMutation.d.ts +1 -0
- package/build/graphql/types/Update.js +9 -0
- package/build/project/publish.d.ts +23 -1
- package/build/project/publish.js +71 -11
- package/build/project/resolveRuntimeVersionAsync.d.ts +2 -0
- package/build/project/resolveRuntimeVersionAsync.js +4 -0
- package/build/update/republish.js +19 -0
- package/build/utils/expodash/mapMapAsync.d.ts +1 -0
- package/build/utils/expodash/mapMapAsync.js +12 -0
- package/build/utils/fingerprintCli.d.ts +21 -3
- package/build/utils/fingerprintCli.js +62 -13
- package/build/utils/prompts.d.ts +1 -1
- package/build/utils/prompts.js +1 -1
- package/oclif.manifest.json +43 -48
- package/package.json +7 -4
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.createFingerprintAsync = void 0;
|
|
3
|
+
exports.createFingerprintsByKeyAsync = exports.createFingerprintAsync = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const eas_build_job_1 = require("@expo/eas-build-job");
|
|
6
6
|
const resolve_from_1 = require("resolve-from");
|
|
7
|
+
const mapMapAsync_1 = tslib_1.__importDefault(require("./expodash/mapMapAsync"));
|
|
7
8
|
const log_1 = tslib_1.__importDefault(require("../log"));
|
|
8
9
|
const ora_1 = require("../ora");
|
|
9
10
|
async function createFingerprintAsync(projectDir, options) {
|
|
@@ -22,18 +23,7 @@ async function createFingerprintAsync(projectDir, options) {
|
|
|
22
23
|
}, 5000);
|
|
23
24
|
const spinner = (0, ora_1.ora)(`Computing project fingerprint`).start();
|
|
24
25
|
try {
|
|
25
|
-
const
|
|
26
|
-
const fingerprintOptions = {};
|
|
27
|
-
if (options.platform) {
|
|
28
|
-
fingerprintOptions.platforms = [options.platform];
|
|
29
|
-
}
|
|
30
|
-
if (options.workflow === eas_build_job_1.Workflow.MANAGED) {
|
|
31
|
-
fingerprintOptions.ignorePaths = ['android/**/*', 'ios/**/*'];
|
|
32
|
-
}
|
|
33
|
-
if (options.debug) {
|
|
34
|
-
fingerprintOptions.debug = true;
|
|
35
|
-
}
|
|
36
|
-
const fingerprint = await Fingerprint.createFingerprintAsync(projectDir, fingerprintOptions);
|
|
26
|
+
const fingerprint = await createFingerprintWithoutLoggingAsync(projectDir, fingerprintPath, options);
|
|
37
27
|
spinner.succeed(`Computed project fingerprint`);
|
|
38
28
|
return fingerprint;
|
|
39
29
|
}
|
|
@@ -49,3 +39,62 @@ async function createFingerprintAsync(projectDir, options) {
|
|
|
49
39
|
}
|
|
50
40
|
}
|
|
51
41
|
exports.createFingerprintAsync = createFingerprintAsync;
|
|
42
|
+
async function createFingerprintWithoutLoggingAsync(projectDir, fingerprintPath, options) {
|
|
43
|
+
const Fingerprint = require(fingerprintPath);
|
|
44
|
+
const fingerprintOptions = {};
|
|
45
|
+
if (options.platforms) {
|
|
46
|
+
fingerprintOptions.platforms = [...options.platforms];
|
|
47
|
+
}
|
|
48
|
+
if (options.workflow === eas_build_job_1.Workflow.MANAGED) {
|
|
49
|
+
fingerprintOptions.ignorePaths = ['android/**/*', 'ios/**/*'];
|
|
50
|
+
}
|
|
51
|
+
if (options.debug) {
|
|
52
|
+
fingerprintOptions.debug = true;
|
|
53
|
+
}
|
|
54
|
+
// eslint-disable-next-line @typescript-eslint/return-await
|
|
55
|
+
return await Fingerprint.createFingerprintAsync(projectDir, fingerprintOptions);
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* Computes project fingerprints based on provided options and returns a map of fingerprint data keyed by a string.
|
|
59
|
+
*
|
|
60
|
+
* @param projectDir - The root directory of the project.
|
|
61
|
+
* @param fingerprintOptionsByKey - A map where each key is associated with options for generating the fingerprint.
|
|
62
|
+
* - **Key**: A unique identifier (`string`) for the fingerprint options.
|
|
63
|
+
* - **Value**: An object containing options for generating a fingerprint.
|
|
64
|
+
*
|
|
65
|
+
* @returns A promise that resolves to a map where each key corresponds to the input keys, and each value is an object containing fingerprint data.
|
|
66
|
+
*
|
|
67
|
+
* @throws Will throw an error if fingerprint computation fails.
|
|
68
|
+
*/
|
|
69
|
+
async function createFingerprintsByKeyAsync(projectDir, fingerprintOptionsByKey) {
|
|
70
|
+
// @expo/fingerprint is exported in the expo package for SDK 52+
|
|
71
|
+
const fingerprintPath = (0, resolve_from_1.silent)(projectDir, 'expo/fingerprint');
|
|
72
|
+
if (!fingerprintPath) {
|
|
73
|
+
return new Map();
|
|
74
|
+
}
|
|
75
|
+
if (process.env.EAS_SKIP_AUTO_FINGERPRINT) {
|
|
76
|
+
log_1.default.log('Skipping project fingerprints');
|
|
77
|
+
return new Map();
|
|
78
|
+
}
|
|
79
|
+
const timeoutId = setTimeout(() => {
|
|
80
|
+
log_1.default.log('⌛️ Computing the project fingerprints is taking longer than expected...');
|
|
81
|
+
log_1.default.log('⏩ To skip this step, set the environment variable: EAS_SKIP_AUTO_FINGERPRINT=1');
|
|
82
|
+
}, 5000);
|
|
83
|
+
const spinner = (0, ora_1.ora)(`Computing project fingerprints`).start();
|
|
84
|
+
try {
|
|
85
|
+
const fingerprintsByKey = await (0, mapMapAsync_1.default)(fingerprintOptionsByKey, async (options) => await createFingerprintWithoutLoggingAsync(projectDir, fingerprintPath, options));
|
|
86
|
+
spinner.succeed(`Computed project fingerprints`);
|
|
87
|
+
return fingerprintsByKey;
|
|
88
|
+
}
|
|
89
|
+
catch (e) {
|
|
90
|
+
spinner.fail(`Failed to compute project fingerprints`);
|
|
91
|
+
log_1.default.log('⏩ To skip this step, set the environment variable: EAS_SKIP_AUTO_FINGERPRINT=1');
|
|
92
|
+
throw e;
|
|
93
|
+
}
|
|
94
|
+
finally {
|
|
95
|
+
// Clear the timeout if the operation finishes before the time limit
|
|
96
|
+
clearTimeout(timeoutId);
|
|
97
|
+
spinner.stop();
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
exports.createFingerprintsByKeyAsync = createFingerprintsByKeyAsync;
|
package/build/utils/prompts.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EnvironmentSecretType, EnvironmentVariableEnvironment, EnvironmentVariableVisibility } from '../graphql/generated';
|
|
2
2
|
export declare function promptVariableTypeAsync(nonInteractive: boolean, initialType?: EnvironmentSecretType): Promise<EnvironmentSecretType>;
|
|
3
|
-
export declare function parseVisibility(stringVisibility: 'plaintext' | 'sensitive' | '
|
|
3
|
+
export declare function parseVisibility(stringVisibility: 'plaintext' | 'sensitive' | 'secret'): EnvironmentVariableVisibility;
|
|
4
4
|
export declare function promptVariableVisibilityAsync(nonInteractive: boolean, selectedVisibility?: EnvironmentVariableVisibility | null): Promise<EnvironmentVariableVisibility>;
|
|
5
5
|
type EnvironmentPromptArgs = {
|
|
6
6
|
nonInteractive: boolean;
|
package/build/utils/prompts.js
CHANGED
|
@@ -30,7 +30,7 @@ function parseVisibility(stringVisibility) {
|
|
|
30
30
|
return generated_1.EnvironmentVariableVisibility.Public;
|
|
31
31
|
case 'sensitive':
|
|
32
32
|
return generated_1.EnvironmentVariableVisibility.Sensitive;
|
|
33
|
-
case '
|
|
33
|
+
case 'secret':
|
|
34
34
|
return generated_1.EnvironmentVariableVisibility.Secret;
|
|
35
35
|
default:
|
|
36
36
|
throw new Error(`Invalid visibility: ${stringVisibility}`);
|
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "13.
|
|
2
|
+
"version": "13.4.0",
|
|
3
3
|
"commands": {
|
|
4
4
|
"analytics": {
|
|
5
5
|
"id": "analytics",
|
|
@@ -1936,12 +1936,11 @@
|
|
|
1936
1936
|
},
|
|
1937
1937
|
"env:create": {
|
|
1938
1938
|
"id": "env:create",
|
|
1939
|
-
"description": "create an environment variable
|
|
1939
|
+
"description": "create an environment variable for the current project or account",
|
|
1940
1940
|
"strict": true,
|
|
1941
1941
|
"pluginName": "eas-cli",
|
|
1942
1942
|
"pluginAlias": "eas-cli",
|
|
1943
1943
|
"pluginType": "core",
|
|
1944
|
-
"hidden": true,
|
|
1945
1944
|
"aliases": [],
|
|
1946
1945
|
"flags": {
|
|
1947
1946
|
"name": {
|
|
@@ -1959,7 +1958,8 @@
|
|
|
1959
1958
|
"link": {
|
|
1960
1959
|
"name": "link",
|
|
1961
1960
|
"type": "boolean",
|
|
1962
|
-
"description": "Link
|
|
1961
|
+
"description": "Link account-wide variable to the current project",
|
|
1962
|
+
"hidden": true,
|
|
1963
1963
|
"allowNo": false
|
|
1964
1964
|
},
|
|
1965
1965
|
"force": {
|
|
@@ -1983,25 +1983,25 @@
|
|
|
1983
1983
|
"name": "visibility",
|
|
1984
1984
|
"type": "option",
|
|
1985
1985
|
"description": "Visibility of the variable",
|
|
1986
|
-
"helpValue": "(plaintext|sensitive|
|
|
1986
|
+
"helpValue": "(plaintext|sensitive|secret)",
|
|
1987
1987
|
"multiple": false,
|
|
1988
1988
|
"options": [
|
|
1989
1989
|
"plaintext",
|
|
1990
1990
|
"sensitive",
|
|
1991
|
-
"
|
|
1991
|
+
"secret"
|
|
1992
1992
|
]
|
|
1993
1993
|
},
|
|
1994
1994
|
"scope": {
|
|
1995
1995
|
"name": "scope",
|
|
1996
1996
|
"type": "option",
|
|
1997
1997
|
"description": "Scope for the variable",
|
|
1998
|
-
"helpValue": "(
|
|
1998
|
+
"helpValue": "(project|account)",
|
|
1999
1999
|
"multiple": false,
|
|
2000
2000
|
"options": [
|
|
2001
|
-
"
|
|
2002
|
-
"
|
|
2001
|
+
"project",
|
|
2002
|
+
"account"
|
|
2003
2003
|
],
|
|
2004
|
-
"default": "
|
|
2004
|
+
"default": "project"
|
|
2005
2005
|
},
|
|
2006
2006
|
"environment": {
|
|
2007
2007
|
"name": "environment",
|
|
@@ -2037,12 +2037,11 @@
|
|
|
2037
2037
|
},
|
|
2038
2038
|
"env:delete": {
|
|
2039
2039
|
"id": "env:delete",
|
|
2040
|
-
"description": "delete an environment variable
|
|
2040
|
+
"description": "delete an environment variable for the current project or account",
|
|
2041
2041
|
"strict": true,
|
|
2042
2042
|
"pluginName": "eas-cli",
|
|
2043
2043
|
"pluginAlias": "eas-cli",
|
|
2044
2044
|
"pluginType": "core",
|
|
2045
|
-
"hidden": true,
|
|
2046
2045
|
"aliases": [],
|
|
2047
2046
|
"flags": {
|
|
2048
2047
|
"variable-name": {
|
|
@@ -2067,13 +2066,13 @@
|
|
|
2067
2066
|
"name": "scope",
|
|
2068
2067
|
"type": "option",
|
|
2069
2068
|
"description": "Scope for the variable",
|
|
2070
|
-
"helpValue": "(
|
|
2069
|
+
"helpValue": "(project|account)",
|
|
2071
2070
|
"multiple": false,
|
|
2072
2071
|
"options": [
|
|
2073
|
-
"
|
|
2074
|
-
"
|
|
2072
|
+
"project",
|
|
2073
|
+
"account"
|
|
2075
2074
|
],
|
|
2076
|
-
"default": "
|
|
2075
|
+
"default": "project"
|
|
2077
2076
|
},
|
|
2078
2077
|
"non-interactive": {
|
|
2079
2078
|
"name": "non-interactive",
|
|
@@ -2096,12 +2095,11 @@
|
|
|
2096
2095
|
},
|
|
2097
2096
|
"env:exec": {
|
|
2098
2097
|
"id": "env:exec",
|
|
2099
|
-
"description": "execute a
|
|
2098
|
+
"description": "execute a command with environment variables from the selected environment",
|
|
2100
2099
|
"strict": true,
|
|
2101
2100
|
"pluginName": "eas-cli",
|
|
2102
2101
|
"pluginAlias": "eas-cli",
|
|
2103
2102
|
"pluginType": "core",
|
|
2104
|
-
"hidden": true,
|
|
2105
2103
|
"aliases": [],
|
|
2106
2104
|
"flags": {
|
|
2107
2105
|
"non-interactive": {
|
|
@@ -2130,12 +2128,11 @@
|
|
|
2130
2128
|
},
|
|
2131
2129
|
"env:get": {
|
|
2132
2130
|
"id": "env:get",
|
|
2133
|
-
"description": "
|
|
2131
|
+
"description": "view an environment variable for the current project or account",
|
|
2134
2132
|
"strict": true,
|
|
2135
2133
|
"pluginName": "eas-cli",
|
|
2136
2134
|
"pluginAlias": "eas-cli",
|
|
2137
2135
|
"pluginType": "core",
|
|
2138
|
-
"hidden": true,
|
|
2139
2136
|
"aliases": [],
|
|
2140
2137
|
"flags": {
|
|
2141
2138
|
"variable-name": {
|
|
@@ -2172,13 +2169,13 @@
|
|
|
2172
2169
|
"name": "scope",
|
|
2173
2170
|
"type": "option",
|
|
2174
2171
|
"description": "Scope for the variable",
|
|
2175
|
-
"helpValue": "(
|
|
2172
|
+
"helpValue": "(project|account)",
|
|
2176
2173
|
"multiple": false,
|
|
2177
2174
|
"options": [
|
|
2178
|
-
"
|
|
2179
|
-
"
|
|
2175
|
+
"project",
|
|
2176
|
+
"account"
|
|
2180
2177
|
],
|
|
2181
|
-
"default": "
|
|
2178
|
+
"default": "project"
|
|
2182
2179
|
},
|
|
2183
2180
|
"non-interactive": {
|
|
2184
2181
|
"name": "non-interactive",
|
|
@@ -2201,7 +2198,7 @@
|
|
|
2201
2198
|
},
|
|
2202
2199
|
"env:link": {
|
|
2203
2200
|
"id": "env:link",
|
|
2204
|
-
"description": "link
|
|
2201
|
+
"description": "link an account-wide environment variable to the current project",
|
|
2205
2202
|
"strict": true,
|
|
2206
2203
|
"pluginName": "eas-cli",
|
|
2207
2204
|
"pluginAlias": "eas-cli",
|
|
@@ -2260,12 +2257,11 @@
|
|
|
2260
2257
|
},
|
|
2261
2258
|
"env:list": {
|
|
2262
2259
|
"id": "env:list",
|
|
2263
|
-
"description": "list environment variables for the current project",
|
|
2260
|
+
"description": "list environment variables for the current project or account",
|
|
2264
2261
|
"strict": true,
|
|
2265
2262
|
"pluginName": "eas-cli",
|
|
2266
2263
|
"pluginAlias": "eas-cli",
|
|
2267
2264
|
"pluginType": "core",
|
|
2268
|
-
"hidden": true,
|
|
2269
2265
|
"aliases": [],
|
|
2270
2266
|
"flags": {
|
|
2271
2267
|
"include-sensitive": {
|
|
@@ -2308,13 +2304,13 @@
|
|
|
2308
2304
|
"name": "scope",
|
|
2309
2305
|
"type": "option",
|
|
2310
2306
|
"description": "Scope for the variable",
|
|
2311
|
-
"helpValue": "(
|
|
2307
|
+
"helpValue": "(project|account)",
|
|
2312
2308
|
"multiple": false,
|
|
2313
2309
|
"options": [
|
|
2314
|
-
"
|
|
2315
|
-
"
|
|
2310
|
+
"project",
|
|
2311
|
+
"account"
|
|
2316
2312
|
],
|
|
2317
|
-
"default": "
|
|
2313
|
+
"default": "project"
|
|
2318
2314
|
}
|
|
2319
2315
|
},
|
|
2320
2316
|
"args": {
|
|
@@ -2331,12 +2327,11 @@
|
|
|
2331
2327
|
},
|
|
2332
2328
|
"env:pull": {
|
|
2333
2329
|
"id": "env:pull",
|
|
2334
|
-
"description": "pull env file",
|
|
2330
|
+
"description": "pull environment variables for the selected environment to .env file",
|
|
2335
2331
|
"strict": true,
|
|
2336
2332
|
"pluginName": "eas-cli",
|
|
2337
2333
|
"pluginAlias": "eas-cli",
|
|
2338
2334
|
"pluginType": "core",
|
|
2339
|
-
"hidden": true,
|
|
2340
2335
|
"aliases": [],
|
|
2341
2336
|
"flags": {
|
|
2342
2337
|
"non-interactive": {
|
|
@@ -2380,12 +2375,11 @@
|
|
|
2380
2375
|
},
|
|
2381
2376
|
"env:push": {
|
|
2382
2377
|
"id": "env:push",
|
|
2383
|
-
"description": "push env file",
|
|
2378
|
+
"description": "push environment variables from .env file to the selected environment",
|
|
2384
2379
|
"strict": true,
|
|
2385
2380
|
"pluginName": "eas-cli",
|
|
2386
2381
|
"pluginAlias": "eas-cli",
|
|
2387
2382
|
"pluginType": "core",
|
|
2388
|
-
"hidden": true,
|
|
2389
2383
|
"aliases": [],
|
|
2390
2384
|
"flags": {
|
|
2391
2385
|
"environment": {
|
|
@@ -2422,7 +2416,7 @@
|
|
|
2422
2416
|
},
|
|
2423
2417
|
"env:unlink": {
|
|
2424
2418
|
"id": "env:unlink",
|
|
2425
|
-
"description": "unlink
|
|
2419
|
+
"description": "unlink an account-wide environment variable from the current project",
|
|
2426
2420
|
"strict": true,
|
|
2427
2421
|
"pluginName": "eas-cli",
|
|
2428
2422
|
"pluginAlias": "eas-cli",
|
|
@@ -2469,12 +2463,11 @@
|
|
|
2469
2463
|
},
|
|
2470
2464
|
"env:update": {
|
|
2471
2465
|
"id": "env:update",
|
|
2472
|
-
"description": "update an environment variable on the current project or
|
|
2466
|
+
"description": "update an environment variable on the current project or account",
|
|
2473
2467
|
"strict": true,
|
|
2474
2468
|
"pluginName": "eas-cli",
|
|
2475
2469
|
"pluginAlias": "eas-cli",
|
|
2476
2470
|
"pluginType": "core",
|
|
2477
|
-
"hidden": true,
|
|
2478
2471
|
"aliases": [],
|
|
2479
2472
|
"flags": {
|
|
2480
2473
|
"variable-name": {
|
|
@@ -2522,25 +2515,25 @@
|
|
|
2522
2515
|
"name": "visibility",
|
|
2523
2516
|
"type": "option",
|
|
2524
2517
|
"description": "Visibility of the variable",
|
|
2525
|
-
"helpValue": "(plaintext|sensitive|
|
|
2518
|
+
"helpValue": "(plaintext|sensitive|secret)",
|
|
2526
2519
|
"multiple": false,
|
|
2527
2520
|
"options": [
|
|
2528
2521
|
"plaintext",
|
|
2529
2522
|
"sensitive",
|
|
2530
|
-
"
|
|
2523
|
+
"secret"
|
|
2531
2524
|
]
|
|
2532
2525
|
},
|
|
2533
2526
|
"scope": {
|
|
2534
2527
|
"name": "scope",
|
|
2535
2528
|
"type": "option",
|
|
2536
2529
|
"description": "Scope for the variable",
|
|
2537
|
-
"helpValue": "(
|
|
2530
|
+
"helpValue": "(project|account)",
|
|
2538
2531
|
"multiple": false,
|
|
2539
2532
|
"options": [
|
|
2540
|
-
"
|
|
2541
|
-
"
|
|
2533
|
+
"project",
|
|
2534
|
+
"account"
|
|
2542
2535
|
],
|
|
2543
|
-
"default": "
|
|
2536
|
+
"default": "project"
|
|
2544
2537
|
},
|
|
2545
2538
|
"environment": {
|
|
2546
2539
|
"name": "environment",
|
|
@@ -2731,6 +2724,7 @@
|
|
|
2731
2724
|
"pluginName": "eas-cli",
|
|
2732
2725
|
"pluginAlias": "eas-cli",
|
|
2733
2726
|
"pluginType": "core",
|
|
2727
|
+
"hidden": true,
|
|
2734
2728
|
"aliases": [],
|
|
2735
2729
|
"flags": {
|
|
2736
2730
|
"scope": {
|
|
@@ -2794,6 +2788,7 @@
|
|
|
2794
2788
|
"pluginName": "eas-cli",
|
|
2795
2789
|
"pluginAlias": "eas-cli",
|
|
2796
2790
|
"pluginType": "core",
|
|
2791
|
+
"hidden": true,
|
|
2797
2792
|
"aliases": [],
|
|
2798
2793
|
"flags": {
|
|
2799
2794
|
"id": {
|
|
@@ -2822,6 +2817,7 @@
|
|
|
2822
2817
|
"pluginName": "eas-cli",
|
|
2823
2818
|
"pluginAlias": "eas-cli",
|
|
2824
2819
|
"pluginType": "core",
|
|
2820
|
+
"hidden": true,
|
|
2825
2821
|
"aliases": [],
|
|
2826
2822
|
"flags": {},
|
|
2827
2823
|
"args": {},
|
|
@@ -2837,6 +2833,7 @@
|
|
|
2837
2833
|
"pluginName": "eas-cli",
|
|
2838
2834
|
"pluginAlias": "eas-cli",
|
|
2839
2835
|
"pluginType": "core",
|
|
2836
|
+
"hidden": true,
|
|
2840
2837
|
"aliases": [],
|
|
2841
2838
|
"flags": {
|
|
2842
2839
|
"scope": {
|
|
@@ -2945,8 +2942,7 @@
|
|
|
2945
2942
|
"environment": {
|
|
2946
2943
|
"name": "environment",
|
|
2947
2944
|
"type": "option",
|
|
2948
|
-
"description": "Environment to use the server-side defined EAS environment variables
|
|
2949
|
-
"hidden": true,
|
|
2945
|
+
"description": "Environment to use for the server-side defined EAS environment variables during command execution.",
|
|
2950
2946
|
"required": false,
|
|
2951
2947
|
"helpValue": "(development|preview|production)",
|
|
2952
2948
|
"multiple": false,
|
|
@@ -3150,8 +3146,7 @@
|
|
|
3150
3146
|
"environment": {
|
|
3151
3147
|
"name": "environment",
|
|
3152
3148
|
"type": "option",
|
|
3153
|
-
"description": "Environment to use the server-side defined EAS environment variables
|
|
3154
|
-
"hidden": true,
|
|
3149
|
+
"description": "Environment to use for the server-side defined EAS environment variables during command execution.",
|
|
3155
3150
|
"required": false,
|
|
3156
3151
|
"helpValue": "(development|preview|production)",
|
|
3157
3152
|
"multiple": false,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
3
|
"description": "EAS command line tool",
|
|
4
|
-
"version": "13.
|
|
4
|
+
"version": "13.4.0",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bin": {
|
|
7
7
|
"eas": "./bin/run"
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"@expo/config": "9.0.4",
|
|
14
14
|
"@expo/config-plugins": "8.0.10",
|
|
15
15
|
"@expo/eas-build-job": "1.0.149",
|
|
16
|
-
"@expo/eas-json": "13.
|
|
16
|
+
"@expo/eas-json": "13.4.0",
|
|
17
17
|
"@expo/env": "^0.3.0",
|
|
18
18
|
"@expo/json-file": "8.3.3",
|
|
19
19
|
"@expo/logger": "1.0.117",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@expo/results": "1.0.0",
|
|
29
29
|
"@expo/rudder-sdk-node": "1.1.1",
|
|
30
30
|
"@expo/spawn-async": "1.7.2",
|
|
31
|
-
"@expo/steps": "1.0.
|
|
31
|
+
"@expo/steps": "1.0.150",
|
|
32
32
|
"@expo/timeago.js": "1.0.0",
|
|
33
33
|
"@oclif/core": "^1.26.2",
|
|
34
34
|
"@oclif/plugin-autocomplete": "^2.3.10",
|
|
@@ -177,6 +177,9 @@
|
|
|
177
177
|
"secret": {
|
|
178
178
|
"description": "manage project and account secrets"
|
|
179
179
|
},
|
|
180
|
+
"env": {
|
|
181
|
+
"description": "manage project and account environment variables"
|
|
182
|
+
},
|
|
180
183
|
"update": {
|
|
181
184
|
"description": "manage individual updates"
|
|
182
185
|
},
|
|
@@ -231,5 +234,5 @@
|
|
|
231
234
|
"node": "20.11.0",
|
|
232
235
|
"yarn": "1.22.21"
|
|
233
236
|
},
|
|
234
|
-
"gitHead": "
|
|
237
|
+
"gitHead": "e16e1f3871f28c91bedf8df01566ae4b482765c8"
|
|
235
238
|
}
|