eas-cli 16.28.0 → 16.31.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 +97 -94
- package/build/analytics/AnalyticsManager.js +4 -4
- package/build/analytics/common.js +1 -2
- package/build/api.js +5 -5
- package/build/branch/delete.js +1 -2
- package/build/branch/queries.js +5 -5
- package/build/branch/utils.js +2 -2
- package/build/build/android/build.js +3 -4
- package/build/build/android/graphql.js +1 -2
- package/build/build/android/prepareJob.js +1 -2
- package/build/build/android/syncProjectConfiguration.js +2 -3
- package/build/build/android/version.js +6 -6
- package/build/build/build.js +3 -4
- package/build/build/configure.js +4 -5
- package/build/build/createContext.js +1 -2
- package/build/build/evaluateConfigWithEnvVarsAsync.js +1 -2
- package/build/build/graphql.js +7 -7
- package/build/build/ios/build.js +2 -3
- package/build/build/ios/credentials.js +2 -3
- package/build/build/ios/graphql.js +2 -3
- package/build/build/ios/prepareJob.js +2 -3
- package/build/build/ios/syncProjectConfiguration.js +1 -2
- package/build/build/ios/version.js +10 -10
- package/build/build/local.js +2 -2
- package/build/build/metadata.js +3 -4
- package/build/build/queries.js +4 -4
- package/build/build/runBuildAndSubmit.js +2 -3
- package/build/build/utils/appJson.js +2 -3
- package/build/build/utils/credentials.js +1 -2
- package/build/build/utils/devClient.js +1 -2
- package/build/build/utils/formatBuild.js +2 -3
- package/build/build/utils/printBuildInfo.js +4 -5
- package/build/build/utils/repository.js +8 -9
- package/build/build/utils/resourceClass.js +1 -2
- package/build/build/utils/url.js +8 -9
- package/build/build/utils/version.js +2 -3
- package/build/build/validate.js +3 -4
- package/build/channel/branch-mapping.js +24 -24
- package/build/channel/delete.d.ts +5 -0
- package/build/channel/delete.js +23 -0
- package/build/channel/print-utils.js +2 -3
- package/build/channel/queries.js +8 -8
- package/build/channel/utils.js +1 -2
- package/build/commandUtils/builds.js +3 -4
- package/build/commandUtils/context/contextUtils/createGraphqlClient.js +1 -2
- package/build/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.js +2 -3
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +3 -4
- package/build/commandUtils/context/contextUtils/loadServerSideEnvironmentVariablesAsync.js +1 -2
- package/build/commandUtils/experienceParser.d.ts +6 -0
- package/build/commandUtils/experienceParser.js +42 -0
- package/build/commandUtils/new/commands.js +3 -4
- package/build/commandUtils/new/configs.js +4 -5
- package/build/commandUtils/new/projectFiles.js +6 -7
- package/build/commandUtils/new/utils.js +1 -2
- package/build/commandUtils/projectNameValidation.d.ts +8 -0
- package/build/commandUtils/projectNameValidation.js +30 -0
- package/build/commandUtils/workflow/buildProfileUtils.js +12 -13
- package/build/commandUtils/workflow/creation.js +5 -5
- package/build/commandUtils/workflow/fetchLogs.js +2 -3
- package/build/commandUtils/workflow/inputs.js +5 -5
- package/build/commandUtils/workflow/stateMachine.js +7 -7
- package/build/commandUtils/workflow/utils.js +12 -12
- package/build/commandUtils/workflow/validation.js +4 -5
- package/build/commands/build/cancel.js +1 -2
- package/build/commands/build/delete.js +1 -2
- package/build/commands/build/index.js +1 -2
- package/build/commands/channel/delete.js +7 -23
- package/build/commands/channel/edit.js +1 -2
- package/build/commands/channel/pause.js +1 -2
- package/build/commands/channel/resume.js +1 -2
- package/build/commands/deploy/index.js +1 -1
- package/build/commands/project/init.js +3 -1
- package/build/commands/project/new.js +3 -4
- package/build/commands/update/index.d.ts +8 -0
- package/build/commands/update/index.js +39 -56
- package/build/commands/update/list.d.ts +3 -0
- package/build/commands/update/list.js +30 -1
- package/build/commands/update/revert-update-rollout.js +1 -2
- package/build/credentials/android/actions/BuildCredentialsUtils.js +6 -7
- package/build/credentials/android/api/GraphqlClient.js +21 -21
- package/build/credentials/android/api/graphql/queries/AndroidAppCredentialsQuery.d.ts +2 -2
- package/build/credentials/android/api/graphql/queries/GoogleServiceAccountKeyQuery.d.ts +5 -5
- package/build/credentials/android/utils/googleServiceAccountKey.js +4 -4
- package/build/credentials/android/utils/keystore.js +2 -3
- package/build/credentials/android/utils/keystoreNew.js +3 -4
- package/build/credentials/android/utils/printCredentials.js +3 -4
- package/build/credentials/credentialsJson/read.js +3 -4
- package/build/credentials/credentialsJson/update.js +2 -3
- package/build/credentials/credentialsJson/utils.js +2 -3
- package/build/credentials/ios/actions/AppleTeamFormatting.js +1 -2
- package/build/credentials/ios/actions/AppleTeamUtils.js +1 -2
- package/build/credentials/ios/actions/AscApiKeyUtils.js +10 -10
- package/build/credentials/ios/actions/BuildCredentialsUtils.js +7 -8
- package/build/credentials/ios/actions/DeviceUtils.js +2 -3
- package/build/credentials/ios/actions/DistributionCertificateUtils.js +4 -5
- package/build/credentials/ios/actions/ProvisioningProfileUtils.js +2 -3
- package/build/credentials/ios/actions/PushKeyUtils.js +5 -6
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.js +2 -2
- package/build/credentials/ios/actions/SetUpTargetBuildCredentials.js +6 -2
- package/build/credentials/ios/api/GraphqlClient.js +24 -25
- package/build/credentials/ios/api/graphql/queries/AppStoreConnectApiKeyQuery.d.ts +5 -5
- package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.d.ts +8 -8
- package/build/credentials/ios/api/graphql/queries/AppleDistributionCertificateQuery.d.ts +5 -5
- package/build/credentials/ios/api/graphql/queries/ApplePushKeyQuery.d.ts +5 -5
- package/build/credentials/ios/api/graphql/queries/IosAppCredentialsQuery.d.ts +1 -1
- package/build/credentials/ios/appstore/AppStoreApi.d.ts +0 -2
- package/build/credentials/ios/appstore/Credentials.js +4 -5
- package/build/credentials/ios/appstore/Credentials.types.d.ts +0 -1
- package/build/credentials/ios/appstore/CredentialsUtils.js +6 -7
- package/build/credentials/ios/appstore/ascApiKey.d.ts +0 -1
- package/build/credentials/ios/appstore/ascApiKey.js +6 -7
- package/build/credentials/ios/appstore/authenticate.d.ts +0 -1
- package/build/credentials/ios/appstore/authenticate.js +4 -5
- package/build/credentials/ios/appstore/authenticateTypes.d.ts +0 -1
- package/build/credentials/ios/appstore/bundleId.d.ts +0 -1
- package/build/credentials/ios/appstore/bundleId.js +2 -3
- package/build/credentials/ios/appstore/bundleIdCapabilities.d.ts +0 -1
- package/build/credentials/ios/appstore/bundleIdCapabilities.js +3 -3
- package/build/credentials/ios/appstore/capabilityIdentifiers.d.ts +0 -1
- package/build/credentials/ios/appstore/capabilityIdentifiers.js +1 -2
- package/build/credentials/ios/appstore/capabilityList.d.ts +0 -1
- package/build/credentials/ios/appstore/contractMessages.d.ts +0 -1
- package/build/credentials/ios/appstore/contractMessages.js +2 -3
- package/build/credentials/ios/appstore/distributionCertificate.d.ts +0 -1
- package/build/credentials/ios/appstore/distributionCertificate.js +7 -7
- package/build/credentials/ios/appstore/ensureAppExists.d.ts +6 -1
- package/build/credentials/ios/appstore/ensureAppExists.js +55 -18
- package/build/credentials/ios/appstore/ensureTestFlightGroup.d.ts +0 -1
- package/build/credentials/ios/appstore/ensureTestFlightGroup.js +1 -2
- package/build/credentials/ios/appstore/keychain.js +4 -4
- package/build/credentials/ios/appstore/provisioningProfile.d.ts +0 -1
- package/build/credentials/ios/appstore/provisioningProfile.js +5 -5
- package/build/credentials/ios/appstore/provisioningProfileAdhoc.d.ts +0 -1
- package/build/credentials/ios/appstore/provisioningProfileAdhoc.js +1 -2
- package/build/credentials/ios/appstore/pushKey.js +4 -4
- package/build/credentials/ios/appstore/resolveCredentials.d.ts +0 -1
- package/build/credentials/ios/appstore/resolveCredentials.js +6 -7
- package/build/credentials/ios/credentials.d.ts +0 -1
- package/build/credentials/ios/credentials.js +2 -2
- package/build/credentials/ios/utils/authType.d.ts +0 -1
- package/build/credentials/ios/utils/authType.js +1 -2
- package/build/credentials/ios/utils/convertHTMLToASCII.js +1 -2
- package/build/credentials/ios/utils/p12Certificate.d.ts +0 -1
- package/build/credentials/ios/utils/p12Certificate.js +3 -4
- package/build/credentials/ios/utils/printCredentials.js +3 -4
- package/build/credentials/ios/utils/provisioningProfile.js +5 -6
- package/build/credentials/ios/validators/validateAscApiKey.js +2 -3
- package/build/credentials/ios/validators/validateDistributionCertificate.js +1 -2
- package/build/credentials/ios/validators/validateProvisioningProfile.js +1 -2
- package/build/credentials/ios/validators/validatePushKey.js +1 -2
- package/build/credentials/manager/IosActions.js +4 -4
- package/build/credentials/manager/SelectPlatform.js +1 -1
- package/build/credentials/utils/promptForCredentials.js +3 -4
- package/build/devices/actions/create/currentMachineMethod.js +1 -2
- package/build/devices/actions/create/developerPortalMethod.d.ts +0 -1
- package/build/devices/actions/create/developerPortalMethod.js +2 -3
- package/build/devices/actions/create/inputMethod.js +1 -2
- package/build/devices/actions/create/registrationUrlMethod.js +1 -2
- package/build/devices/actions/create/utils.js +4 -5
- package/build/devices/context.js +1 -2
- package/build/devices/queries.js +4 -4
- package/build/devices/udids.js +2 -3
- package/build/devices/utils/formatDevice.js +2 -3
- package/build/fetch.d.ts +0 -1
- package/build/fetch.js +1 -1
- package/build/fingerprint/cli.js +3 -4
- package/build/fingerprint/diff.js +1 -2
- package/build/fingerprint/types.d.ts +0 -1
- package/build/fingerprint/utils.js +4 -5
- package/build/graphql/client.js +2 -2
- package/build/graphql/generated.d.ts +177 -88
- package/build/graphql/generated.js +39 -3
- package/build/graphql/mutations/PublishMutation.d.ts +2 -2
- package/build/graphql/queries/AccountUsageQuery.d.ts +1 -1
- package/build/graphql/queries/AppVersionQuery.d.ts +1 -1
- package/build/graphql/queries/BackgroundJobReceiptQuery.d.ts +1 -1
- package/build/graphql/queries/BranchQuery.d.ts +3 -3
- package/build/graphql/queries/BuildQuery.d.ts +3 -3
- package/build/graphql/queries/ChannelQuery.d.ts +2 -2
- package/build/graphql/queries/ChannelQuery.js +2 -2
- package/build/graphql/queries/EnvironmentVariablesQuery.d.ts +12 -12
- package/build/graphql/queries/FingerprintQuery.d.ts +6 -6
- package/build/graphql/queries/PublishQuery.d.ts +1 -1
- package/build/graphql/queries/SubmissionQuery.d.ts +1 -1
- package/build/graphql/queries/UserQuery.d.ts +1 -1
- package/build/graphql/queries/WorkflowJobQuery.d.ts +2 -2
- package/build/graphql/queries/WorkflowRunQuery.d.ts +4 -4
- package/build/graphql/types/AppPlatform.js +2 -3
- package/build/log.js +2 -3
- package/build/metadata/apple/config/reader.d.ts +0 -1
- package/build/metadata/apple/config/writer.d.ts +0 -1
- package/build/metadata/apple/data.d.ts +0 -1
- package/build/metadata/apple/tasks/age-rating.d.ts +0 -1
- package/build/metadata/apple/tasks/age-rating.js +0 -1
- package/build/metadata/apple/tasks/app-info.d.ts +0 -1
- package/build/metadata/apple/tasks/app-info.js +15 -4
- package/build/metadata/apple/tasks/app-review-detail.d.ts +0 -1
- package/build/metadata/apple/tasks/app-review-detail.js +0 -1
- package/build/metadata/apple/tasks/app-version.d.ts +0 -1
- package/build/metadata/apple/tasks/app-version.js +15 -3
- package/build/metadata/apple/tasks/index.js +1 -2
- package/build/metadata/apple/types.d.ts +0 -1
- package/build/metadata/auth.d.ts +0 -1
- package/build/metadata/auth.js +1 -2
- package/build/metadata/config/resolve.js +4 -5
- package/build/metadata/config/validate.js +1 -2
- package/build/metadata/download.js +1 -2
- package/build/metadata/errors.js +3 -3
- package/build/metadata/upload.js +1 -2
- package/build/metadata/utils/ajv.js +2 -3
- package/build/metadata/utils/asc.d.ts +0 -1
- package/build/metadata/utils/date.js +1 -2
- package/build/metadata/utils/log.js +1 -2
- package/build/metadata/utils/retry.js +2 -3
- package/build/metadata/utils/telemetry.d.ts +0 -1
- package/build/metadata/utils/telemetry.js +2 -3
- package/build/onboarding/git.js +3 -4
- package/build/onboarding/installDependencies.js +3 -3
- package/build/onboarding/runCommand.js +1 -2
- package/build/ora.js +1 -2
- package/build/platform.d.ts +1 -0
- package/build/platform.js +28 -10
- package/build/project/android/applicationId.js +6 -6
- package/build/project/android/gradle.js +1 -2
- package/build/project/android/gradleUtils.js +4 -4
- package/build/project/android/versions.js +3 -3
- package/build/project/applicationIdentifier.js +1 -2
- package/build/project/customBuildConfig.js +3 -4
- package/build/project/expoConfig.js +5 -6
- package/build/project/expoSdk.js +1 -2
- package/build/project/fetchOrCreateProjectIDForWriteToConfigWithConfirmationAsync.js +2 -3
- package/build/project/ios/bundleIdentifier.js +6 -6
- package/build/project/ios/entitlements.js +2 -3
- package/build/project/ios/exemptEncryption.js +1 -2
- package/build/project/ios/scheme.js +2 -3
- package/build/project/ios/target.d.ts +0 -1
- package/build/project/ios/target.js +8 -9
- package/build/project/ios/versions.js +3 -3
- package/build/project/maybeUploadAssetMapAsync.js +1 -2
- package/build/project/maybeUploadFingerprintAsync.js +1 -2
- package/build/project/metroConfig.js +1 -2
- package/build/project/projectUtils.js +15 -16
- package/build/project/publish.d.ts +15 -2
- package/build/project/publish.js +56 -29
- package/build/project/remoteVersionSource.js +6 -6
- package/build/project/resolveRuntimeVersionAsync.js +2 -3
- package/build/project/uploadAccountScopedFileAsync.js +1 -2
- package/build/project/uploadAccountScopedProjectSourceAsync.js +1 -2
- package/build/project/workflow.js +3 -4
- package/build/prompts.js +5 -6
- package/build/rollout/branch-mapping.js +14 -15
- package/build/rollout/utils.js +5 -6
- package/build/run/android/aapt.js +2 -3
- package/build/run/android/adb.js +8 -9
- package/build/run/android/emulator.js +6 -6
- package/build/run/android/run.js +1 -2
- package/build/run/android/sdk.d.ts +0 -1
- package/build/run/android/sdk.js +2 -2
- package/build/run/android/systemRequirements.js +1 -2
- package/build/run/ios/run.js +1 -2
- package/build/run/ios/simctl.js +1 -2
- package/build/run/ios/simulator.js +9 -10
- package/build/run/ios/systemRequirements.js +1 -2
- package/build/run/ios/xcode.js +5 -5
- package/build/run/ios/xcrun.js +3 -4
- package/build/run/run.js +2 -3
- package/build/run/utils.js +1 -2
- package/build/submit/ArchiveSource.js +3 -3
- package/build/submit/android/ServiceAccountSource.js +4 -4
- package/build/submit/commons.js +2 -3
- package/build/submit/context.js +1 -2
- package/build/submit/ios/AppProduce.js +1 -2
- package/build/submit/ios/AppSpecificPasswordSource.js +3 -3
- package/build/submit/ios/AscApiKeySource.js +4 -4
- package/build/submit/ios/utils/language.js +1 -2
- package/build/submit/submit.js +3 -4
- package/build/submit/utils/builds.js +1 -2
- package/build/submit/utils/errors.js +1 -2
- package/build/submit/utils/files.js +2 -3
- package/build/submit/utils/logs.js +1 -2
- package/build/submit/utils/summary.js +2 -3
- package/build/submit/utils/urls.js +2 -3
- package/build/submit/utils/wait.js +2 -3
- package/build/update/android/UpdatesModule.js +2 -3
- package/build/update/configure.js +4 -4
- package/build/update/delete.js +1 -2
- package/build/update/getBranchFromChannelNameAndCreateAndLinkIfNotExistsAsync.js +1 -2
- package/build/update/ios/UpdatesModule.js +2 -3
- package/build/update/queries.d.ts +5 -3
- package/build/update/queries.js +12 -9
- package/build/update/republish.js +5 -6
- package/build/update/roll-back-to-embedded.js +1 -2
- package/build/update/utils.js +15 -15
- package/build/uploads.js +3 -4
- package/build/user/User.js +2 -3
- package/build/user/actions.js +1 -2
- package/build/user/expoSsoLauncher.js +1 -2
- package/build/user/fetchSessionSecretAndSsoUser.js +1 -2
- package/build/user/fetchSessionSecretAndUser.js +1 -2
- package/build/user/fetchUser.js +1 -2
- package/build/utils/code-signing.d.ts +0 -1
- package/build/utils/code-signing.js +7 -8
- package/build/utils/date.js +1 -2
- package/build/utils/download.js +2 -3
- package/build/utils/expoCli.js +4 -4
- package/build/utils/expoUpdatesCli.js +2 -2
- package/build/utils/expodash/areSetsEqual.js +1 -1
- package/build/utils/expodash/capitalize.js +1 -1
- package/build/utils/expodash/chunk.js +1 -1
- package/build/utils/expodash/differenceBy.js +1 -1
- package/build/utils/expodash/filter.js +1 -2
- package/build/utils/expodash/groupBy.js +1 -1
- package/build/utils/expodash/intersection.js +1 -1
- package/build/utils/expodash/mapMapAsync.js +1 -1
- package/build/utils/expodash/memoize.js +1 -2
- package/build/utils/expodash/pick.js +1 -1
- package/build/utils/expodash/sortBy.js +1 -1
- package/build/utils/expodash/uniq.js +1 -1
- package/build/utils/expodash/uniqBy.js +1 -1
- package/build/utils/expodash/zipObject.js +1 -1
- package/build/utils/files.js +2 -3
- package/build/utils/formatFields.js +1 -1
- package/build/utils/image.js +3 -3
- package/build/utils/json.js +2 -3
- package/build/utils/plist.d.ts +0 -1
- package/build/utils/plist.js +3 -4
- package/build/utils/pollForBackgroundJobReceiptAsync.js +2 -2
- package/build/utils/profiles.js +3 -4
- package/build/utils/progress.js +1 -2
- package/build/utils/promise.js +1 -2
- package/build/utils/prompts.js +8 -9
- package/build/utils/queries.js +2 -3
- package/build/utils/relay.js +4 -4
- package/build/utils/statuspageService.js +1 -2
- package/build/utils/timer.js +4 -5
- package/build/utils/usage/checkForOverages.js +4 -5
- package/build/utils/variableUtils.js +4 -5
- package/build/vcs/clients/git.js +1 -2
- package/build/vcs/git.js +5 -6
- package/build/vcs/index.js +1 -2
- package/build/vcs/local.js +2 -2
- package/build/webhooks/formatWebhook.js +1 -2
- package/build/webhooks/input.js +3 -4
- package/build/worker/assets.d.ts +0 -1
- package/build/worker/assets.js +6 -7
- package/build/worker/deployment.js +8 -9
- package/build/worker/mutations.d.ts +1 -1
- package/build/worker/queries.d.ts +4 -4
- package/build/worker/upload.d.ts +0 -2
- package/build/worker/upload.js +5 -6
- package/build/worker/utils/logs.js +5 -5
- package/build/worker/utils/multipart.js +3 -3
- package/oclif.manifest.json +35 -1
- package/package.json +13 -11
package/README.md
CHANGED
|
@@ -176,7 +176,7 @@ ALIASES
|
|
|
176
176
|
$ eas login
|
|
177
177
|
```
|
|
178
178
|
|
|
179
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
179
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
180
180
|
|
|
181
181
|
## `eas account:logout`
|
|
182
182
|
|
|
@@ -193,7 +193,7 @@ ALIASES
|
|
|
193
193
|
$ eas logout
|
|
194
194
|
```
|
|
195
195
|
|
|
196
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
196
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
197
197
|
|
|
198
198
|
## `eas account:view`
|
|
199
199
|
|
|
@@ -210,7 +210,7 @@ ALIASES
|
|
|
210
210
|
$ eas whoami
|
|
211
211
|
```
|
|
212
212
|
|
|
213
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
213
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
214
214
|
|
|
215
215
|
## `eas analytics [STATUS]`
|
|
216
216
|
|
|
@@ -224,7 +224,7 @@ DESCRIPTION
|
|
|
224
224
|
display or change analytics settings
|
|
225
225
|
```
|
|
226
226
|
|
|
227
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
227
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
228
228
|
|
|
229
229
|
## `eas autocomplete [SHELL]`
|
|
230
230
|
|
|
@@ -276,7 +276,7 @@ DESCRIPTION
|
|
|
276
276
|
create a branch
|
|
277
277
|
```
|
|
278
278
|
|
|
279
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
279
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
280
280
|
|
|
281
281
|
## `eas branch:delete [NAME]`
|
|
282
282
|
|
|
@@ -297,7 +297,7 @@ DESCRIPTION
|
|
|
297
297
|
delete a branch
|
|
298
298
|
```
|
|
299
299
|
|
|
300
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
300
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
301
301
|
|
|
302
302
|
## `eas branch:list`
|
|
303
303
|
|
|
@@ -317,7 +317,7 @@ DESCRIPTION
|
|
|
317
317
|
list all branches
|
|
318
318
|
```
|
|
319
319
|
|
|
320
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
320
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
321
321
|
|
|
322
322
|
## `eas branch:rename`
|
|
323
323
|
|
|
@@ -337,7 +337,7 @@ DESCRIPTION
|
|
|
337
337
|
rename a branch
|
|
338
338
|
```
|
|
339
339
|
|
|
340
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
340
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
341
341
|
|
|
342
342
|
## `eas branch:view [NAME]`
|
|
343
343
|
|
|
@@ -360,7 +360,7 @@ DESCRIPTION
|
|
|
360
360
|
view a branch
|
|
361
361
|
```
|
|
362
362
|
|
|
363
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
363
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
364
364
|
|
|
365
365
|
## `eas build`
|
|
366
366
|
|
|
@@ -401,7 +401,7 @@ DESCRIPTION
|
|
|
401
401
|
start a build
|
|
402
402
|
```
|
|
403
403
|
|
|
404
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
404
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
405
405
|
|
|
406
406
|
## `eas build:cancel [BUILD_ID]`
|
|
407
407
|
|
|
@@ -420,7 +420,7 @@ DESCRIPTION
|
|
|
420
420
|
cancel a build
|
|
421
421
|
```
|
|
422
422
|
|
|
423
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
423
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
424
424
|
|
|
425
425
|
## `eas build:configure`
|
|
426
426
|
|
|
@@ -437,7 +437,7 @@ DESCRIPTION
|
|
|
437
437
|
configure the project to support EAS Build
|
|
438
438
|
```
|
|
439
439
|
|
|
440
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
440
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
441
441
|
|
|
442
442
|
## `eas build:delete [BUILD_ID]`
|
|
443
443
|
|
|
@@ -456,7 +456,7 @@ DESCRIPTION
|
|
|
456
456
|
delete a build
|
|
457
457
|
```
|
|
458
458
|
|
|
459
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
459
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
460
460
|
|
|
461
461
|
## `eas build:dev`
|
|
462
462
|
|
|
@@ -476,7 +476,7 @@ DESCRIPTION
|
|
|
476
476
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
477
477
|
```
|
|
478
478
|
|
|
479
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
479
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/build/dev.ts)_
|
|
480
480
|
|
|
481
481
|
## `eas build:download`
|
|
482
482
|
|
|
@@ -497,7 +497,7 @@ DESCRIPTION
|
|
|
497
497
|
download simulator/emulator builds for a given fingerprint hash
|
|
498
498
|
```
|
|
499
499
|
|
|
500
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
500
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/build/download.ts)_
|
|
501
501
|
|
|
502
502
|
## `eas build:inspect`
|
|
503
503
|
|
|
@@ -532,7 +532,7 @@ DESCRIPTION
|
|
|
532
532
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
533
533
|
```
|
|
534
534
|
|
|
535
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
535
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
536
536
|
|
|
537
537
|
## `eas build:list`
|
|
538
538
|
|
|
@@ -584,7 +584,7 @@ DESCRIPTION
|
|
|
584
584
|
list all builds for your project
|
|
585
585
|
```
|
|
586
586
|
|
|
587
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
587
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
588
588
|
|
|
589
589
|
## `eas build:resign`
|
|
590
590
|
|
|
@@ -613,7 +613,7 @@ DESCRIPTION
|
|
|
613
613
|
re-sign a build archive
|
|
614
614
|
```
|
|
615
615
|
|
|
616
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
616
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
617
617
|
|
|
618
618
|
## `eas build:run`
|
|
619
619
|
|
|
@@ -639,7 +639,7 @@ DESCRIPTION
|
|
|
639
639
|
run simulator/emulator builds from eas-cli
|
|
640
640
|
```
|
|
641
641
|
|
|
642
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
642
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
643
643
|
|
|
644
644
|
## `eas build:submit`
|
|
645
645
|
|
|
@@ -693,7 +693,7 @@ DESCRIPTION
|
|
|
693
693
|
get the latest version from EAS servers
|
|
694
694
|
```
|
|
695
695
|
|
|
696
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
696
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
697
697
|
|
|
698
698
|
## `eas build:version:set`
|
|
699
699
|
|
|
@@ -712,7 +712,7 @@ DESCRIPTION
|
|
|
712
712
|
update version of an app
|
|
713
713
|
```
|
|
714
714
|
|
|
715
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
715
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
716
716
|
|
|
717
717
|
## `eas build:version:sync`
|
|
718
718
|
|
|
@@ -731,7 +731,7 @@ DESCRIPTION
|
|
|
731
731
|
update a version in native code with a value stored on EAS servers
|
|
732
732
|
```
|
|
733
733
|
|
|
734
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
734
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
735
735
|
|
|
736
736
|
## `eas build:view [BUILD_ID]`
|
|
737
737
|
|
|
@@ -748,7 +748,7 @@ DESCRIPTION
|
|
|
748
748
|
view a build for your project
|
|
749
749
|
```
|
|
750
750
|
|
|
751
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
751
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
752
752
|
|
|
753
753
|
## `eas channel:create [NAME]`
|
|
754
754
|
|
|
@@ -769,7 +769,7 @@ DESCRIPTION
|
|
|
769
769
|
create a channel
|
|
770
770
|
```
|
|
771
771
|
|
|
772
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
772
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
773
773
|
|
|
774
774
|
## `eas channel:delete [NAME]`
|
|
775
775
|
|
|
@@ -790,7 +790,7 @@ DESCRIPTION
|
|
|
790
790
|
Delete a channel
|
|
791
791
|
```
|
|
792
792
|
|
|
793
|
-
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
793
|
+
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/channel/delete.ts)_
|
|
794
794
|
|
|
795
795
|
## `eas channel:edit [NAME]`
|
|
796
796
|
|
|
@@ -812,7 +812,7 @@ DESCRIPTION
|
|
|
812
812
|
point a channel at a new branch
|
|
813
813
|
```
|
|
814
814
|
|
|
815
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
815
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
816
816
|
|
|
817
817
|
## `eas channel:list`
|
|
818
818
|
|
|
@@ -832,7 +832,7 @@ DESCRIPTION
|
|
|
832
832
|
list all channels
|
|
833
833
|
```
|
|
834
834
|
|
|
835
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
835
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
836
836
|
|
|
837
837
|
## `eas channel:pause [NAME]`
|
|
838
838
|
|
|
@@ -854,7 +854,7 @@ DESCRIPTION
|
|
|
854
854
|
pause a channel to stop it from sending updates
|
|
855
855
|
```
|
|
856
856
|
|
|
857
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
857
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
858
858
|
|
|
859
859
|
## `eas channel:resume [NAME]`
|
|
860
860
|
|
|
@@ -876,7 +876,7 @@ DESCRIPTION
|
|
|
876
876
|
resume a channel to start sending updates
|
|
877
877
|
```
|
|
878
878
|
|
|
879
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
879
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
880
880
|
|
|
881
881
|
## `eas channel:rollout [CHANNEL]`
|
|
882
882
|
|
|
@@ -909,7 +909,7 @@ DESCRIPTION
|
|
|
909
909
|
Roll a new branch out on a channel incrementally.
|
|
910
910
|
```
|
|
911
911
|
|
|
912
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
912
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
913
913
|
|
|
914
914
|
## `eas channel:view [NAME]`
|
|
915
915
|
|
|
@@ -932,7 +932,7 @@ DESCRIPTION
|
|
|
932
932
|
view a channel
|
|
933
933
|
```
|
|
934
934
|
|
|
935
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
935
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
936
936
|
|
|
937
937
|
## `eas config`
|
|
938
938
|
|
|
@@ -953,7 +953,7 @@ DESCRIPTION
|
|
|
953
953
|
display project configuration (app.json + eas.json)
|
|
954
954
|
```
|
|
955
955
|
|
|
956
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
956
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/config.ts)_
|
|
957
957
|
|
|
958
958
|
## `eas credentials`
|
|
959
959
|
|
|
@@ -970,7 +970,7 @@ DESCRIPTION
|
|
|
970
970
|
manage credentials
|
|
971
971
|
```
|
|
972
972
|
|
|
973
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
973
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
974
974
|
|
|
975
975
|
## `eas credentials:configure-build`
|
|
976
976
|
|
|
@@ -988,7 +988,7 @@ DESCRIPTION
|
|
|
988
988
|
Set up credentials for building your project.
|
|
989
989
|
```
|
|
990
990
|
|
|
991
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
991
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
992
992
|
|
|
993
993
|
## `eas deploy [options]`
|
|
994
994
|
|
|
@@ -1016,7 +1016,7 @@ ALIASES
|
|
|
1016
1016
|
$ eas worker:deploy
|
|
1017
1017
|
```
|
|
1018
1018
|
|
|
1019
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1019
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
1020
1020
|
|
|
1021
1021
|
## `eas deploy:alias`
|
|
1022
1022
|
|
|
@@ -1041,7 +1041,7 @@ ALIASES
|
|
|
1041
1041
|
$ eas deploy:promote
|
|
1042
1042
|
```
|
|
1043
1043
|
|
|
1044
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1044
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
|
|
1045
1045
|
|
|
1046
1046
|
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1047
1047
|
|
|
@@ -1062,7 +1062,7 @@ ALIASES
|
|
|
1062
1062
|
$ eas worker:alias:delete
|
|
1063
1063
|
```
|
|
1064
1064
|
|
|
1065
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1065
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
|
|
1066
1066
|
|
|
1067
1067
|
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1068
1068
|
|
|
@@ -1083,7 +1083,7 @@ ALIASES
|
|
|
1083
1083
|
$ eas worker:delete
|
|
1084
1084
|
```
|
|
1085
1085
|
|
|
1086
|
-
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1086
|
+
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1087
1087
|
|
|
1088
1088
|
## `eas deploy:promote`
|
|
1089
1089
|
|
|
@@ -1120,7 +1120,7 @@ DESCRIPTION
|
|
|
1120
1120
|
register new Apple Devices to use for internal distribution
|
|
1121
1121
|
```
|
|
1122
1122
|
|
|
1123
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1123
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
1124
1124
|
|
|
1125
1125
|
## `eas device:delete`
|
|
1126
1126
|
|
|
@@ -1140,7 +1140,7 @@ DESCRIPTION
|
|
|
1140
1140
|
remove a registered device from your account
|
|
1141
1141
|
```
|
|
1142
1142
|
|
|
1143
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1143
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1144
1144
|
|
|
1145
1145
|
## `eas device:list`
|
|
1146
1146
|
|
|
@@ -1161,7 +1161,7 @@ DESCRIPTION
|
|
|
1161
1161
|
list all registered devices for your account
|
|
1162
1162
|
```
|
|
1163
1163
|
|
|
1164
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1164
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1165
1165
|
|
|
1166
1166
|
## `eas device:rename`
|
|
1167
1167
|
|
|
@@ -1182,7 +1182,7 @@ DESCRIPTION
|
|
|
1182
1182
|
rename a registered device
|
|
1183
1183
|
```
|
|
1184
1184
|
|
|
1185
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1185
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1186
1186
|
|
|
1187
1187
|
## `eas device:view [UDID]`
|
|
1188
1188
|
|
|
@@ -1196,7 +1196,7 @@ DESCRIPTION
|
|
|
1196
1196
|
view a device for your project
|
|
1197
1197
|
```
|
|
1198
1198
|
|
|
1199
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1199
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1200
1200
|
|
|
1201
1201
|
## `eas diagnostics`
|
|
1202
1202
|
|
|
@@ -1210,7 +1210,7 @@ DESCRIPTION
|
|
|
1210
1210
|
display environment info
|
|
1211
1211
|
```
|
|
1212
1212
|
|
|
1213
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1213
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1214
1214
|
|
|
1215
1215
|
## `eas env:create [ENVIRONMENT]`
|
|
1216
1216
|
|
|
@@ -1240,7 +1240,7 @@ DESCRIPTION
|
|
|
1240
1240
|
create an environment variable for the current project or account
|
|
1241
1241
|
```
|
|
1242
1242
|
|
|
1243
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1243
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1244
1244
|
|
|
1245
1245
|
## `eas env:delete [ENVIRONMENT]`
|
|
1246
1246
|
|
|
@@ -1265,7 +1265,7 @@ DESCRIPTION
|
|
|
1265
1265
|
delete an environment variable for the current project or account
|
|
1266
1266
|
```
|
|
1267
1267
|
|
|
1268
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1268
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1269
1269
|
|
|
1270
1270
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1271
1271
|
|
|
@@ -1287,7 +1287,7 @@ DESCRIPTION
|
|
|
1287
1287
|
execute a command with environment variables from the selected environment
|
|
1288
1288
|
```
|
|
1289
1289
|
|
|
1290
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1290
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1291
1291
|
|
|
1292
1292
|
## `eas env:get [ENVIRONMENT]`
|
|
1293
1293
|
|
|
@@ -1312,7 +1312,7 @@ DESCRIPTION
|
|
|
1312
1312
|
view an environment variable for the current project or account
|
|
1313
1313
|
```
|
|
1314
1314
|
|
|
1315
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1315
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1316
1316
|
|
|
1317
1317
|
## `eas env:list [ENVIRONMENT]`
|
|
1318
1318
|
|
|
@@ -1338,7 +1338,7 @@ DESCRIPTION
|
|
|
1338
1338
|
list environment variables for the current project or account
|
|
1339
1339
|
```
|
|
1340
1340
|
|
|
1341
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1341
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1342
1342
|
|
|
1343
1343
|
## `eas env:pull [ENVIRONMENT]`
|
|
1344
1344
|
|
|
@@ -1360,7 +1360,7 @@ DESCRIPTION
|
|
|
1360
1360
|
pull environment variables for the selected environment to .env file
|
|
1361
1361
|
```
|
|
1362
1362
|
|
|
1363
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1363
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1364
1364
|
|
|
1365
1365
|
## `eas env:push [ENVIRONMENT]`
|
|
1366
1366
|
|
|
@@ -1382,7 +1382,7 @@ DESCRIPTION
|
|
|
1382
1382
|
push environment variables from .env file to the selected environment
|
|
1383
1383
|
```
|
|
1384
1384
|
|
|
1385
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1385
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1386
1386
|
|
|
1387
1387
|
## `eas env:update [ENVIRONMENT]`
|
|
1388
1388
|
|
|
@@ -1414,7 +1414,7 @@ DESCRIPTION
|
|
|
1414
1414
|
update an environment variable on the current project or account
|
|
1415
1415
|
```
|
|
1416
1416
|
|
|
1417
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1417
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1418
1418
|
|
|
1419
1419
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1420
1420
|
|
|
@@ -1458,7 +1458,7 @@ EXAMPLES
|
|
|
1458
1458
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1459
1459
|
```
|
|
1460
1460
|
|
|
1461
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1461
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1462
1462
|
|
|
1463
1463
|
## `eas fingerprint:generate`
|
|
1464
1464
|
|
|
@@ -1488,7 +1488,7 @@ EXAMPLES
|
|
|
1488
1488
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1489
1489
|
```
|
|
1490
1490
|
|
|
1491
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1491
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1492
1492
|
|
|
1493
1493
|
## `eas help [COMMAND]`
|
|
1494
1494
|
|
|
@@ -1596,7 +1596,7 @@ DESCRIPTION
|
|
|
1596
1596
|
validate the local store configuration
|
|
1597
1597
|
```
|
|
1598
1598
|
|
|
1599
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1599
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1600
1600
|
|
|
1601
1601
|
## `eas metadata:pull`
|
|
1602
1602
|
|
|
@@ -1613,7 +1613,7 @@ DESCRIPTION
|
|
|
1613
1613
|
generate the local store configuration from the app stores
|
|
1614
1614
|
```
|
|
1615
1615
|
|
|
1616
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1616
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1617
1617
|
|
|
1618
1618
|
## `eas metadata:push`
|
|
1619
1619
|
|
|
@@ -1630,7 +1630,7 @@ DESCRIPTION
|
|
|
1630
1630
|
sync the local store configuration to the app stores
|
|
1631
1631
|
```
|
|
1632
1632
|
|
|
1633
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1633
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1634
1634
|
|
|
1635
1635
|
## `eas new [PATH]`
|
|
1636
1636
|
|
|
@@ -1681,7 +1681,7 @@ DESCRIPTION
|
|
|
1681
1681
|
open the project page in a web browser
|
|
1682
1682
|
```
|
|
1683
1683
|
|
|
1684
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1684
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/open.ts)_
|
|
1685
1685
|
|
|
1686
1686
|
## `eas project:info`
|
|
1687
1687
|
|
|
@@ -1695,7 +1695,7 @@ DESCRIPTION
|
|
|
1695
1695
|
information about the current project
|
|
1696
1696
|
```
|
|
1697
1697
|
|
|
1698
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1698
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1699
1699
|
|
|
1700
1700
|
## `eas project:init`
|
|
1701
1701
|
|
|
@@ -1718,7 +1718,7 @@ ALIASES
|
|
|
1718
1718
|
$ eas init
|
|
1719
1719
|
```
|
|
1720
1720
|
|
|
1721
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1721
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1722
1722
|
|
|
1723
1723
|
## `eas project:new [PATH]`
|
|
1724
1724
|
|
|
@@ -1741,7 +1741,7 @@ ALIASES
|
|
|
1741
1741
|
$ eas new
|
|
1742
1742
|
```
|
|
1743
1743
|
|
|
1744
|
-
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1744
|
+
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/project/new.ts)_
|
|
1745
1745
|
|
|
1746
1746
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1747
1747
|
|
|
@@ -1759,7 +1759,7 @@ ALIASES
|
|
|
1759
1759
|
$ eas onboarding
|
|
1760
1760
|
```
|
|
1761
1761
|
|
|
1762
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1762
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1763
1763
|
|
|
1764
1764
|
## `eas submit`
|
|
1765
1765
|
|
|
@@ -1794,7 +1794,7 @@ ALIASES
|
|
|
1794
1794
|
$ eas build:submit
|
|
1795
1795
|
```
|
|
1796
1796
|
|
|
1797
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1797
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1798
1798
|
|
|
1799
1799
|
## `eas update`
|
|
1800
1800
|
|
|
@@ -1834,7 +1834,7 @@ DESCRIPTION
|
|
|
1834
1834
|
publish an update group
|
|
1835
1835
|
```
|
|
1836
1836
|
|
|
1837
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1837
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1838
1838
|
|
|
1839
1839
|
## `eas update:configure`
|
|
1840
1840
|
|
|
@@ -1854,7 +1854,7 @@ DESCRIPTION
|
|
|
1854
1854
|
configure the project to support EAS Update
|
|
1855
1855
|
```
|
|
1856
1856
|
|
|
1857
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1857
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1858
1858
|
|
|
1859
1859
|
## `eas update:delete GROUPID`
|
|
1860
1860
|
|
|
@@ -1875,7 +1875,7 @@ DESCRIPTION
|
|
|
1875
1875
|
delete all the updates in an update group
|
|
1876
1876
|
```
|
|
1877
1877
|
|
|
1878
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1878
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1879
1879
|
|
|
1880
1880
|
## `eas update:edit [GROUPID]`
|
|
1881
1881
|
|
|
@@ -1899,7 +1899,7 @@ DESCRIPTION
|
|
|
1899
1899
|
edit all the updates in an update group
|
|
1900
1900
|
```
|
|
1901
1901
|
|
|
1902
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1902
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1903
1903
|
|
|
1904
1904
|
## `eas update:list`
|
|
1905
1905
|
|
|
@@ -1907,21 +1907,24 @@ view the recent updates
|
|
|
1907
1907
|
|
|
1908
1908
|
```
|
|
1909
1909
|
USAGE
|
|
1910
|
-
$ eas update:list [--branch <value> | --all] [
|
|
1910
|
+
$ eas update:list [--branch <value> | --all] [-p android|ios|all] [--runtime-version <value>] [--offset
|
|
1911
|
+
<value>] [--limit <value>] [--json --non-interactive]
|
|
1911
1912
|
|
|
1912
1913
|
FLAGS
|
|
1913
|
-
--all
|
|
1914
|
-
--
|
|
1915
|
-
--
|
|
1916
|
-
--
|
|
1917
|
-
--
|
|
1918
|
-
--
|
|
1914
|
+
-p, --platform=(android|ios|all) Filter updates by platform
|
|
1915
|
+
--all List updates on all branches
|
|
1916
|
+
--branch=<value> List updates only on this branch
|
|
1917
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
1918
|
+
--limit=<value> The number of items to fetch each query. Defaults to 25 and is capped at 50.
|
|
1919
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1920
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
1921
|
+
--runtime-version=<value> Filter updates by runtime version
|
|
1919
1922
|
|
|
1920
1923
|
DESCRIPTION
|
|
1921
1924
|
view the recent updates
|
|
1922
1925
|
```
|
|
1923
1926
|
|
|
1924
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1927
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1925
1928
|
|
|
1926
1929
|
## `eas update:republish`
|
|
1927
1930
|
|
|
@@ -1957,7 +1960,7 @@ DESCRIPTION
|
|
|
1957
1960
|
roll back to an existing update
|
|
1958
1961
|
```
|
|
1959
1962
|
|
|
1960
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1963
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1961
1964
|
|
|
1962
1965
|
## `eas update:revert-update-rollout`
|
|
1963
1966
|
|
|
@@ -1984,7 +1987,7 @@ DESCRIPTION
|
|
|
1984
1987
|
revert a rollout update for a project
|
|
1985
1988
|
```
|
|
1986
1989
|
|
|
1987
|
-
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1990
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
1988
1991
|
|
|
1989
1992
|
## `eas update:roll-back-to-embedded`
|
|
1990
1993
|
|
|
@@ -2012,7 +2015,7 @@ DESCRIPTION
|
|
|
2012
2015
|
roll back to the embedded update
|
|
2013
2016
|
```
|
|
2014
2017
|
|
|
2015
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2018
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
2016
2019
|
|
|
2017
2020
|
## `eas update:rollback`
|
|
2018
2021
|
|
|
@@ -2033,7 +2036,7 @@ DESCRIPTION
|
|
|
2033
2036
|
instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
2034
2037
|
```
|
|
2035
2038
|
|
|
2036
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2039
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
2037
2040
|
|
|
2038
2041
|
## `eas update:view GROUPID`
|
|
2039
2042
|
|
|
@@ -2053,7 +2056,7 @@ DESCRIPTION
|
|
|
2053
2056
|
update group details
|
|
2054
2057
|
```
|
|
2055
2058
|
|
|
2056
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2059
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
2057
2060
|
|
|
2058
2061
|
## `eas upload`
|
|
2059
2062
|
|
|
@@ -2074,7 +2077,7 @@ DESCRIPTION
|
|
|
2074
2077
|
upload a local build and generate a sharable link
|
|
2075
2078
|
```
|
|
2076
2079
|
|
|
2077
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2080
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/upload.ts)_
|
|
2078
2081
|
|
|
2079
2082
|
## `eas webhook:create`
|
|
2080
2083
|
|
|
@@ -2095,7 +2098,7 @@ DESCRIPTION
|
|
|
2095
2098
|
create a webhook
|
|
2096
2099
|
```
|
|
2097
2100
|
|
|
2098
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2101
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
2099
2102
|
|
|
2100
2103
|
## `eas webhook:delete [ID]`
|
|
2101
2104
|
|
|
@@ -2115,7 +2118,7 @@ DESCRIPTION
|
|
|
2115
2118
|
delete a webhook
|
|
2116
2119
|
```
|
|
2117
2120
|
|
|
2118
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2121
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2119
2122
|
|
|
2120
2123
|
## `eas webhook:list`
|
|
2121
2124
|
|
|
@@ -2133,7 +2136,7 @@ DESCRIPTION
|
|
|
2133
2136
|
list webhooks
|
|
2134
2137
|
```
|
|
2135
2138
|
|
|
2136
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2139
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2137
2140
|
|
|
2138
2141
|
## `eas webhook:update`
|
|
2139
2142
|
|
|
@@ -2155,7 +2158,7 @@ DESCRIPTION
|
|
|
2155
2158
|
update a webhook
|
|
2156
2159
|
```
|
|
2157
2160
|
|
|
2158
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2161
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2159
2162
|
|
|
2160
2163
|
## `eas webhook:view ID`
|
|
2161
2164
|
|
|
@@ -2172,7 +2175,7 @@ DESCRIPTION
|
|
|
2172
2175
|
view a webhook
|
|
2173
2176
|
```
|
|
2174
2177
|
|
|
2175
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2178
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2176
2179
|
|
|
2177
2180
|
## `eas whoami`
|
|
2178
2181
|
|
|
@@ -2292,7 +2295,7 @@ DESCRIPTION
|
|
|
2292
2295
|
to cancel.
|
|
2293
2296
|
```
|
|
2294
2297
|
|
|
2295
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2298
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2296
2299
|
|
|
2297
2300
|
## `eas workflow:create [NAME]`
|
|
2298
2301
|
|
|
@@ -2312,7 +2315,7 @@ DESCRIPTION
|
|
|
2312
2315
|
create a new workflow configuration YAML file
|
|
2313
2316
|
```
|
|
2314
2317
|
|
|
2315
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2318
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2316
2319
|
|
|
2317
2320
|
## `eas workflow:logs [ID]`
|
|
2318
2321
|
|
|
@@ -2336,7 +2339,7 @@ DESCRIPTION
|
|
|
2336
2339
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2337
2340
|
```
|
|
2338
2341
|
|
|
2339
|
-
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2342
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2340
2343
|
|
|
2341
2344
|
## `eas workflow:run [FILE]`
|
|
2342
2345
|
|
|
@@ -2376,7 +2379,7 @@ FLAG DESCRIPTIONS
|
|
|
2376
2379
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2377
2380
|
```
|
|
2378
2381
|
|
|
2379
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2382
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2380
2383
|
|
|
2381
2384
|
## `eas workflow:runs`
|
|
2382
2385
|
|
|
@@ -2401,7 +2404,7 @@ DESCRIPTION
|
|
|
2401
2404
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2402
2405
|
```
|
|
2403
2406
|
|
|
2404
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2407
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2405
2408
|
|
|
2406
2409
|
## `eas workflow:status [WORKFLOW_RUN_ID]`
|
|
2407
2410
|
|
|
@@ -2429,7 +2432,7 @@ FLAG DESCRIPTIONS
|
|
|
2429
2432
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2430
2433
|
```
|
|
2431
2434
|
|
|
2432
|
-
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2435
|
+
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/workflow/status.ts)_
|
|
2433
2436
|
|
|
2434
2437
|
## `eas workflow:validate PATH`
|
|
2435
2438
|
|
|
@@ -2449,7 +2452,7 @@ DESCRIPTION
|
|
|
2449
2452
|
validate a workflow configuration yaml file
|
|
2450
2453
|
```
|
|
2451
2454
|
|
|
2452
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2455
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2453
2456
|
|
|
2454
2457
|
## `eas workflow:view [ID]`
|
|
2455
2458
|
|
|
@@ -2471,5 +2474,5 @@ DESCRIPTION
|
|
|
2471
2474
|
workflow runs for the current project.
|
|
2472
2475
|
```
|
|
2473
2476
|
|
|
2474
|
-
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2477
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v16.31.0/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2475
2478
|
<!-- commandsstop -->
|