eas-cli 0.45.1 → 0.48.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 +117 -117
- package/build/analytics/rudderstackClient.js +3 -3
- package/build/api.d.ts +25 -1
- package/build/api.js +70 -38
- package/build/build/android/build.js +4 -4
- package/build/build/android/prepareJob.js +2 -2
- package/build/build/android/syncProjectConfiguration.js +7 -7
- package/build/build/android/version.js +3 -3
- package/build/build/build.js +4 -4
- package/build/build/configure.js +3 -3
- package/build/build/createContext.js +2 -2
- package/build/build/ios/credentials.js +1 -1
- package/build/build/ios/graphql.js +1 -1
- package/build/build/ios/prepareJob.js +2 -2
- package/build/build/ios/syncProjectConfiguration.js +3 -3
- package/build/build/ios/version.js +3 -3
- package/build/build/local.js +3 -3
- package/build/build/metadata.js +7 -18
- package/build/build/runBuildAndSubmit.js +3 -3
- package/build/build/utils/appJson.js +3 -3
- package/build/build/utils/credentials.js +2 -2
- package/build/build/utils/devClient.js +3 -3
- package/build/build/utils/formatBuild.js +2 -2
- package/build/build/utils/printBuildInfo.js +5 -5
- package/build/build/utils/repository.js +5 -5
- package/build/build/utils/url.js +1 -1
- package/build/build/utils/version.js +4 -4
- package/build/build/validate.js +3 -3
- package/build/commandUtils/EasCommand.js +2 -2
- package/build/commands/account/login.js +2 -2
- package/build/commands/account/logout.js +2 -2
- package/build/commands/account/view.js +3 -3
- package/build/commands/analytics.js +4 -4
- package/build/commands/branch/create.js +5 -5
- package/build/commands/branch/delete.js +5 -5
- package/build/commands/branch/list.js +6 -6
- package/build/commands/branch/publish.js +1 -1
- package/build/commands/branch/rename.js +5 -5
- package/build/commands/branch/view.js +7 -7
- package/build/commands/build/cancel.js +5 -5
- package/build/commands/build/configure.js +7 -8
- package/build/commands/build/index.js +13 -9
- package/build/commands/build/inspect.js +6 -6
- package/build/commands/build/list.js +3 -3
- package/build/commands/build/view.js +2 -2
- package/build/commands/channel/create.js +13 -12
- package/build/commands/channel/delete.js +5 -5
- package/build/commands/channel/edit.js +39 -33
- package/build/commands/channel/list.js +5 -5
- package/build/commands/channel/rollout.js +50 -41
- package/build/commands/channel/view.d.ts +0 -2
- package/build/commands/channel/view.js +10 -54
- package/build/commands/config.js +11 -5
- package/build/commands/credentials.js +2 -2
- package/build/commands/device/create.js +3 -3
- package/build/commands/device/delete.js +4 -4
- package/build/commands/device/list.js +5 -5
- package/build/commands/device/view.js +3 -3
- package/build/commands/diagnostics.js +4 -4
- package/build/commands/project/info.js +4 -4
- package/build/commands/project/init.js +3 -3
- package/build/commands/secret/create.js +4 -4
- package/build/commands/secret/delete.js +3 -5
- package/build/commands/secret/list.js +6 -6
- package/build/commands/submit.js +4 -5
- package/build/commands/update/configure.d.ts +3 -0
- package/build/commands/update/configure.js +151 -36
- package/build/commands/update/delete.js +7 -7
- package/build/commands/update/index.d.ts +1 -0
- package/build/commands/update/index.js +66 -13
- package/build/commands/update/list.js +7 -7
- package/build/commands/update/view.js +5 -5
- package/build/commands/webhook/create.js +2 -2
- package/build/commands/webhook/delete.js +6 -6
- package/build/commands/webhook/list.js +4 -4
- package/build/commands/webhook/update.js +3 -3
- package/build/commands/webhook/view.js +3 -3
- package/build/credentials/android/AndroidCredentialsProvider.js +2 -2
- package/build/credentials/android/actions/AssignFcm.js +1 -1
- package/build/credentials/android/actions/AssignGoogleServiceAccountKey.js +1 -1
- package/build/credentials/android/actions/BuildCredentialsUtils.js +1 -1
- package/build/credentials/android/actions/CreateFcm.js +1 -1
- package/build/credentials/android/actions/CreateGoogleServiceAccountKey.js +1 -1
- package/build/credentials/android/actions/CreateKeystore.js +1 -1
- package/build/credentials/android/actions/DownloadKeystore.js +3 -3
- package/build/credentials/android/actions/RemoveFcm.js +1 -1
- package/build/credentials/android/actions/RemoveGoogleServiceAccountKey.js +1 -1
- package/build/credentials/android/actions/RemoveKeystore.js +2 -2
- package/build/credentials/android/actions/SetUpBuildCredentials.js +2 -2
- package/build/credentials/android/actions/SetUpBuildCredentialsFromCredentialsJson.js +1 -1
- package/build/credentials/android/actions/SetUpGoogleServiceAccountKey.js +2 -2
- package/build/credentials/android/actions/UpdateCredentialsJson.js +1 -1
- package/build/credentials/android/actions/UseExistingGoogleServiceAccountKey.js +1 -1
- package/build/credentials/android/api/graphql/mutations/AndroidAppBuildCredentialsMutation.js +2 -2
- package/build/credentials/android/api/graphql/mutations/AndroidAppCredentialsMutation.js +2 -2
- package/build/credentials/android/api/graphql/mutations/AndroidFcmMutation.js +2 -2
- package/build/credentials/android/api/graphql/mutations/AndroidKeystoreMutation.js +2 -2
- package/build/credentials/android/api/graphql/mutations/GoogleServiceAccountKeyMutation.js +2 -2
- package/build/credentials/android/api/graphql/queries/AndroidAppCredentialsQuery.js +2 -2
- package/build/credentials/android/api/graphql/queries/GoogleServiceAccountKeyQuery.js +1 -1
- package/build/credentials/android/utils/googleServiceAccountKey.js +6 -6
- package/build/credentials/android/utils/keystore.js +9 -12
- package/build/credentials/android/utils/keystoreNew.js +2 -2
- package/build/credentials/android/utils/printCredentials.js +3 -3
- package/build/credentials/context.js +5 -5
- package/build/credentials/credentialsJson/read.js +2 -2
- package/build/credentials/credentialsJson/types.js +1 -1
- package/build/credentials/credentialsJson/update.js +6 -6
- package/build/credentials/credentialsJson/utils.js +1 -1
- package/build/credentials/ios/IosCredentialsProvider.js +2 -2
- package/build/credentials/ios/actions/AscApiKeyUtils.js +4 -4
- package/build/credentials/ios/actions/AssignAscApiKey.js +1 -1
- package/build/credentials/ios/actions/AssignPushKey.js +1 -1
- package/build/credentials/ios/actions/BuildCredentialsUtils.js +1 -1
- package/build/credentials/ios/actions/ConfigureProvisioningProfile.js +3 -3
- package/build/credentials/ios/actions/CreateAscApiKey.js +1 -1
- package/build/credentials/ios/actions/CreateDistributionCertificate.js +1 -1
- package/build/credentials/ios/actions/CreateProvisioningProfile.js +3 -3
- package/build/credentials/ios/actions/CreatePushKey.js +1 -1
- package/build/credentials/ios/actions/DistributionCertificateUtils.js +4 -4
- package/build/credentials/ios/actions/ProvisioningProfileUtils.js +1 -1
- package/build/credentials/ios/actions/PushKeyUtils.js +2 -2
- package/build/credentials/ios/actions/RemoveAscApiKey.d.ts +1 -2
- package/build/credentials/ios/actions/RemoveAscApiKey.js +3 -4
- package/build/credentials/ios/actions/RemoveDistributionCertificate.js +1 -1
- package/build/credentials/ios/actions/RemoveProvisioningProfile.js +2 -2
- package/build/credentials/ios/actions/RemovePushKey.d.ts +1 -2
- package/build/credentials/ios/actions/RemovePushKey.js +3 -4
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.js +6 -6
- package/build/credentials/ios/actions/SetUpAscApiKey.js +3 -3
- package/build/credentials/ios/actions/SetUpBuildCredentials.js +3 -3
- package/build/credentials/ios/actions/SetUpBuildCredentialsFromCredentialsJson.js +2 -2
- package/build/credentials/ios/actions/SetUpDistributionCertificate.js +4 -4
- package/build/credentials/ios/actions/SetUpInternalProvisioningProfile.js +1 -1
- package/build/credentials/ios/actions/SetUpProvisioningProfile.js +1 -1
- package/build/credentials/ios/actions/SetUpPushKey.js +3 -3
- package/build/credentials/ios/actions/SetUpSubmissionCredentials.js +4 -4
- package/build/credentials/ios/actions/SetUpTargetBuildCredentials.js +1 -1
- package/build/credentials/ios/actions/SetUpTargetBuildCredentialsFromCredentialsJson.js +3 -3
- package/build/credentials/ios/actions/UpdateCredentialsJson.js +1 -1
- package/build/credentials/ios/api/GraphqlClient.js +1 -1
- package/build/credentials/ios/api/graphql/mutations/AppStoreConnectApiKeyMutation.js +2 -2
- package/build/credentials/ios/api/graphql/mutations/AppleAppIdentifierMutation.js +2 -2
- package/build/credentials/ios/api/graphql/mutations/AppleDeviceMutation.js +1 -1
- package/build/credentials/ios/api/graphql/mutations/AppleDeviceRegistrationRequestMutation.js +1 -1
- package/build/credentials/ios/api/graphql/mutations/AppleDistributionCertificateMutation.js +2 -2
- package/build/credentials/ios/api/graphql/mutations/AppleProvisioningProfileMutation.js +1 -1
- package/build/credentials/ios/api/graphql/mutations/ApplePushKeyMutation.js +2 -2
- package/build/credentials/ios/api/graphql/mutations/AppleTeamMutation.js +1 -1
- package/build/credentials/ios/api/graphql/mutations/IosAppBuildCredentialsMutation.js +2 -2
- package/build/credentials/ios/api/graphql/mutations/IosAppCredentialsMutation.js +2 -2
- package/build/credentials/ios/api/graphql/queries/AppQuery.js +2 -2
- package/build/credentials/ios/api/graphql/queries/AppStoreConnectApiKeyQuery.js +1 -1
- package/build/credentials/ios/api/graphql/queries/AppleAppIdentifierQuery.js +1 -1
- package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.js +2 -2
- package/build/credentials/ios/api/graphql/queries/AppleDistributionCertificateQuery.js +2 -2
- package/build/credentials/ios/api/graphql/queries/AppleProvisioningProfileQuery.js +2 -2
- package/build/credentials/ios/api/graphql/queries/ApplePushKeyQuery.js +1 -1
- package/build/credentials/ios/api/graphql/queries/AppleTeamQuery.js +1 -1
- package/build/credentials/ios/api/graphql/queries/IosAppBuildCredentialsQuery.js +2 -2
- package/build/credentials/ios/api/graphql/queries/IosAppCredentialsQuery.js +2 -2
- package/build/credentials/ios/appstore/AppStoreApi.d.ts +1 -1
- package/build/credentials/ios/appstore/AppStoreApi.js +2 -2
- package/build/credentials/ios/appstore/Credentials.js +1 -1
- package/build/credentials/ios/appstore/ascApiKey.js +1 -1
- package/build/credentials/ios/appstore/authenticate.js +3 -3
- package/build/credentials/ios/appstore/bundleIdCapabilities.js +2 -2
- package/build/credentials/ios/appstore/capabilityIdentifiers.js +1 -1
- package/build/credentials/ios/appstore/contractMessages.js +2 -2
- package/build/credentials/ios/appstore/ensureAppExists.js +2 -2
- package/build/credentials/ios/appstore/keychain.js +1 -1
- package/build/credentials/ios/appstore/provisioningProfile.d.ts +1 -1
- package/build/credentials/ios/appstore/provisioningProfile.js +1 -1
- package/build/credentials/ios/appstore/pushKey.js +3 -3
- package/build/credentials/ios/appstore/resolveCredentials.js +5 -5
- package/build/credentials/ios/credentials.js +1 -1
- package/build/credentials/ios/utils/convertHTMLToASCII.js +4 -4
- package/build/credentials/ios/utils/p12Certificate.js +1 -1
- package/build/credentials/ios/utils/printCredentials.js +4 -4
- package/build/credentials/ios/utils/provisioningProfile.js +1 -1
- package/build/credentials/ios/validators/validateProvisioningProfile.js +5 -5
- package/build/credentials/manager/HelperActions.js +1 -1
- package/build/credentials/manager/ManageAndroid.js +2 -2
- package/build/credentials/manager/ManageIos.js +3 -3
- package/build/credentials/manager/SelectAndroidBuildCredentials.js +1 -1
- package/build/credentials/manager/SelectBuildProfileFromEasJson.js +1 -1
- package/build/credentials/utils/promptForCredentials.js +5 -6
- package/build/devices/actions/create/action.js +2 -2
- package/build/devices/actions/create/inputMethod.js +3 -3
- package/build/devices/actions/create/registrationUrlMethod.js +4 -4
- package/build/devices/manager.js +4 -4
- package/build/devices/utils/formatDevice.js +1 -1
- package/build/fetch.d.ts +7 -0
- package/build/fetch.js +21 -0
- package/build/graphql/client.js +2 -5
- package/build/graphql/generated.d.ts +770 -703
- package/build/graphql/generated.js +6 -1
- package/build/graphql/mutations/AppMutation.js +2 -2
- package/build/graphql/mutations/BuildMutation.js +2 -2
- package/build/graphql/mutations/EnvironmentSecretMutation.js +1 -1
- package/build/graphql/mutations/KeystoreGenerationUrlMutation.js +1 -1
- package/build/graphql/mutations/PublishMutation.d.ts +2 -1
- package/build/graphql/mutations/PublishMutation.js +26 -1
- package/build/graphql/mutations/SubmissionMutation.js +2 -2
- package/build/graphql/mutations/UploadSessionMutation.js +1 -1
- package/build/graphql/mutations/WebhookMutation.js +1 -1
- package/build/graphql/queries/BranchQuery.d.ts +7 -0
- package/build/graphql/queries/BranchQuery.js +29 -0
- package/build/graphql/queries/BuildQuery.js +1 -1
- package/build/graphql/queries/ChannelQuery.d.ts +4 -0
- package/build/graphql/queries/ChannelQuery.js +49 -0
- package/build/graphql/queries/EnvironmentSecretsQuery.js +1 -1
- package/build/graphql/queries/ProjectQuery.js +1 -1
- package/build/graphql/queries/PublishQuery.js +1 -1
- package/build/graphql/queries/SubmissionQuery.js +1 -1
- package/build/graphql/queries/UpdateQuery.js +1 -1
- package/build/graphql/queries/UserQuery.js +1 -1
- package/build/graphql/queries/WebhookQuery.js +1 -1
- package/build/graphql/types/App.js +1 -1
- package/build/graphql/types/Build.js +1 -1
- package/build/graphql/types/EnvironmentSecret.js +1 -1
- package/build/graphql/types/Submission.js +1 -1
- package/build/graphql/types/UpdateBranch.js +1 -1
- package/build/graphql/types/Webhook.js +1 -1
- package/build/graphql/types/credentials/AndroidAppBuildCredentials.js +1 -1
- package/build/graphql/types/credentials/AndroidAppCredentials.js +1 -1
- package/build/graphql/types/credentials/AndroidFcm.js +1 -1
- package/build/graphql/types/credentials/AndroidKeystore.js +1 -1
- package/build/graphql/types/credentials/AppStoreConnectApiKey.js +1 -1
- package/build/graphql/types/credentials/AppleAppIdentifier.js +1 -1
- package/build/graphql/types/credentials/AppleDevice.js +1 -1
- package/build/graphql/types/credentials/AppleDeviceRegistrationRequest.js +1 -1
- package/build/graphql/types/credentials/AppleDistributionCertificate.js +1 -1
- package/build/graphql/types/credentials/AppleProvisioningProfile.js +1 -1
- package/build/graphql/types/credentials/ApplePushKey.js +1 -1
- package/build/graphql/types/credentials/AppleTeam.js +1 -1
- package/build/graphql/types/credentials/GoogleServiceAccountKey.js +1 -1
- package/build/graphql/types/credentials/IosAppBuildCredentials.js +1 -1
- package/build/graphql/types/credentials/IosAppCredentials.js +1 -1
- package/build/log.js +4 -4
- package/build/ora.js +2 -2
- package/build/platform.js +1 -1
- package/build/project/android/applicationId.js +6 -6
- package/build/project/android/gradle.js +2 -2
- package/build/project/android/gradleUtils.js +2 -2
- package/build/project/ensureProjectExists.js +3 -3
- package/build/project/expoSdk.js +3 -3
- package/build/project/ios/bundleIdentifier.js +4 -4
- package/build/project/ios/scheme.js +3 -3
- package/build/project/metroConfig.js +3 -3
- package/build/project/projectUtils.d.ts +3 -5
- package/build/project/projectUtils.js +37 -38
- package/build/project/publish.js +8 -8
- package/build/project/workflow.js +2 -2
- package/build/prompts.js +1 -1
- package/build/submit/ArchiveSource.js +7 -6
- package/build/submit/BaseSubmitter.js +1 -1
- package/build/submit/android/AndroidSubmitCommand.js +3 -3
- package/build/submit/android/AndroidSubmitter.js +3 -3
- package/build/submit/android/ServiceAccountSource.js +4 -4
- package/build/submit/ios/AppProduce.js +2 -2
- package/build/submit/ios/AppSpecificPasswordSource.js +3 -4
- package/build/submit/ios/AscApiKeySource.js +2 -2
- package/build/submit/ios/CredentialsServiceSource.js +2 -2
- package/build/submit/ios/IosSubmitCommand.js +5 -5
- package/build/submit/ios/IosSubmitter.js +3 -3
- package/build/submit/ios/utils/language.js +1 -1
- package/build/submit/submit.js +4 -4
- package/build/submit/utils/errors.js +1 -1
- package/build/submit/utils/files.js +1 -1
- package/build/submit/utils/logs.js +5 -5
- package/build/submit/utils/summary.js +3 -3
- package/build/submit/utils/urls.js +2 -2
- package/build/submit/utils/wait.js +2 -2
- package/build/{build → update}/android/UpdatesModule.d.ts +0 -0
- package/build/{build → update}/android/UpdatesModule.js +4 -3
- package/build/{build → update}/ios/UpdatesModule.d.ts +0 -0
- package/build/{build → update}/ios/UpdatesModule.js +7 -8
- package/build/update/utils.d.ts +3 -0
- package/build/update/utils.js +20 -2
- package/build/uploads.d.ts +2 -10
- package/build/uploads.js +32 -12
- package/build/user/User.js +3 -5
- package/build/user/UserSettings.js +2 -2
- package/build/user/actions.js +5 -5
- package/build/user/otp.js +6 -8
- package/build/user/sessionStorage.js +1 -1
- package/build/utils/code-signing.d.ts +29 -0
- package/build/utils/code-signing.js +162 -0
- package/build/utils/expoCli.js +4 -4
- package/build/utils/files.js +3 -3
- package/build/utils/formatFields.js +1 -1
- package/build/utils/json.js +2 -2
- package/build/utils/paths.js +2 -2
- package/build/utils/plist.js +3 -3
- package/build/utils/profiles.js +2 -2
- package/build/utils/progress.d.ts +6 -3
- package/build/utils/progress.js +1 -1
- package/build/vcs/clients/git.js +3 -3
- package/build/vcs/clients/gitNoCommit.js +3 -3
- package/build/vcs/git.js +1 -1
- package/build/vcs/index.js +3 -3
- package/build/vcs/local.js +4 -4
- package/build/webhooks/formatWebhook.js +1 -1
- package/build/webhooks/input.js +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +42 -33
- package/build/ApiV2Error.d.ts +0 -16
- package/build/ApiV2Error.js +0 -14
- package/build/build/utils/updates.d.ts +0 -3
- package/build/build/utils/updates.js +0 -15
package/README.md
CHANGED
|
@@ -93,7 +93,7 @@ ALIASES
|
|
|
93
93
|
$ eas login
|
|
94
94
|
```
|
|
95
95
|
|
|
96
|
-
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
96
|
+
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
97
97
|
|
|
98
98
|
## `eas account:logout`
|
|
99
99
|
|
|
@@ -110,7 +110,7 @@ ALIASES
|
|
|
110
110
|
$ eas logout
|
|
111
111
|
```
|
|
112
112
|
|
|
113
|
-
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
113
|
+
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
114
114
|
|
|
115
115
|
## `eas account:view`
|
|
116
116
|
|
|
@@ -127,21 +127,21 @@ ALIASES
|
|
|
127
127
|
$ eas whoami
|
|
128
128
|
```
|
|
129
129
|
|
|
130
|
-
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
130
|
+
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
131
131
|
|
|
132
132
|
## `eas analytics [STATUS]`
|
|
133
133
|
|
|
134
|
-
|
|
134
|
+
display or change analytics settings
|
|
135
135
|
|
|
136
136
|
```
|
|
137
137
|
USAGE
|
|
138
138
|
$ eas analytics [STATUS]
|
|
139
139
|
|
|
140
140
|
DESCRIPTION
|
|
141
|
-
|
|
141
|
+
display or change analytics settings
|
|
142
142
|
```
|
|
143
143
|
|
|
144
|
-
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
144
|
+
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
145
145
|
|
|
146
146
|
## `eas autocomplete [SHELL]`
|
|
147
147
|
|
|
@@ -170,11 +170,11 @@ EXAMPLES
|
|
|
170
170
|
$ eas autocomplete --refresh-cache
|
|
171
171
|
```
|
|
172
172
|
|
|
173
|
-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v1.
|
|
173
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v1.2.0/src/commands/autocomplete/index.ts)_
|
|
174
174
|
|
|
175
175
|
## `eas branch:create [NAME]`
|
|
176
176
|
|
|
177
|
-
|
|
177
|
+
create a branch
|
|
178
178
|
|
|
179
179
|
```
|
|
180
180
|
USAGE
|
|
@@ -187,14 +187,14 @@ FLAGS
|
|
|
187
187
|
--json return a json with the new branch ID and name.
|
|
188
188
|
|
|
189
189
|
DESCRIPTION
|
|
190
|
-
|
|
190
|
+
create a branch
|
|
191
191
|
```
|
|
192
192
|
|
|
193
|
-
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
193
|
+
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
194
194
|
|
|
195
195
|
## `eas branch:delete [NAME]`
|
|
196
196
|
|
|
197
|
-
|
|
197
|
+
delete a branch
|
|
198
198
|
|
|
199
199
|
```
|
|
200
200
|
USAGE
|
|
@@ -207,14 +207,14 @@ FLAGS
|
|
|
207
207
|
--json return JSON with the edited branch's ID and name.
|
|
208
208
|
|
|
209
209
|
DESCRIPTION
|
|
210
|
-
|
|
210
|
+
delete a branch
|
|
211
211
|
```
|
|
212
212
|
|
|
213
|
-
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
213
|
+
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
214
214
|
|
|
215
215
|
## `eas branch:list`
|
|
216
216
|
|
|
217
|
-
|
|
217
|
+
list all branches
|
|
218
218
|
|
|
219
219
|
```
|
|
220
220
|
USAGE
|
|
@@ -224,14 +224,14 @@ FLAGS
|
|
|
224
224
|
--json return output as JSON
|
|
225
225
|
|
|
226
226
|
DESCRIPTION
|
|
227
|
-
|
|
227
|
+
list all branches
|
|
228
228
|
```
|
|
229
229
|
|
|
230
|
-
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
230
|
+
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
231
231
|
|
|
232
232
|
## `eas branch:rename`
|
|
233
233
|
|
|
234
|
-
|
|
234
|
+
rename a branch
|
|
235
235
|
|
|
236
236
|
```
|
|
237
237
|
USAGE
|
|
@@ -243,14 +243,14 @@ FLAGS
|
|
|
243
243
|
--to=<value> new name of the branch.
|
|
244
244
|
|
|
245
245
|
DESCRIPTION
|
|
246
|
-
|
|
246
|
+
rename a branch
|
|
247
247
|
```
|
|
248
248
|
|
|
249
|
-
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
249
|
+
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
250
250
|
|
|
251
251
|
## `eas branch:view [NAME]`
|
|
252
252
|
|
|
253
|
-
|
|
253
|
+
view a branch
|
|
254
254
|
|
|
255
255
|
```
|
|
256
256
|
USAGE
|
|
@@ -263,20 +263,19 @@ FLAGS
|
|
|
263
263
|
--json return a json with the branch's ID name and recent update groups.
|
|
264
264
|
|
|
265
265
|
DESCRIPTION
|
|
266
|
-
|
|
266
|
+
view a branch
|
|
267
267
|
```
|
|
268
268
|
|
|
269
|
-
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
269
|
+
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
270
270
|
|
|
271
271
|
## `eas build`
|
|
272
272
|
|
|
273
|
-
|
|
273
|
+
start a build
|
|
274
274
|
|
|
275
275
|
```
|
|
276
276
|
USAGE
|
|
277
|
-
$ eas build [-p android|ios|all] [--json] [--
|
|
278
|
-
|
|
279
|
-
--auto-submit-with-profile <value>]
|
|
277
|
+
$ eas build [-p android|ios|all] [--json] [--profile <value>] [--non-interactive] [--local] [--output
|
|
278
|
+
<value>] [--wait] [--clear-cache] [--auto-submit | --auto-submit-with-profile <value>]
|
|
280
279
|
|
|
281
280
|
FLAGS
|
|
282
281
|
-p, --platform=(android|ios|all)
|
|
@@ -290,32 +289,31 @@ FLAGS
|
|
|
290
289
|
--output=<value> Output path for local build
|
|
291
290
|
--profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined
|
|
292
291
|
in eas.json.
|
|
293
|
-
--skip-project-configuration Skip project configuration
|
|
294
292
|
--[no-]wait Wait for build(s) to complete
|
|
295
293
|
|
|
296
294
|
DESCRIPTION
|
|
297
|
-
|
|
295
|
+
start a build
|
|
298
296
|
```
|
|
299
297
|
|
|
300
|
-
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
298
|
+
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
301
299
|
|
|
302
300
|
## `eas build:cancel [BUILD_ID]`
|
|
303
301
|
|
|
304
|
-
|
|
302
|
+
cancel a build
|
|
305
303
|
|
|
306
304
|
```
|
|
307
305
|
USAGE
|
|
308
306
|
$ eas build:cancel [BUILD_ID]
|
|
309
307
|
|
|
310
308
|
DESCRIPTION
|
|
311
|
-
|
|
309
|
+
cancel a build
|
|
312
310
|
```
|
|
313
311
|
|
|
314
|
-
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
312
|
+
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
315
313
|
|
|
316
314
|
## `eas build:configure`
|
|
317
315
|
|
|
318
|
-
|
|
316
|
+
configure the project to support EAS Build
|
|
319
317
|
|
|
320
318
|
```
|
|
321
319
|
USAGE
|
|
@@ -325,14 +323,14 @@ FLAGS
|
|
|
325
323
|
-p, --platform=(android|ios|all) Platform to configure
|
|
326
324
|
|
|
327
325
|
DESCRIPTION
|
|
328
|
-
|
|
326
|
+
configure the project to support EAS Build
|
|
329
327
|
```
|
|
330
328
|
|
|
331
|
-
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
329
|
+
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
332
330
|
|
|
333
331
|
## `eas build:inspect`
|
|
334
332
|
|
|
335
|
-
|
|
333
|
+
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
336
334
|
|
|
337
335
|
```
|
|
338
336
|
USAGE
|
|
@@ -360,10 +358,10 @@ FLAGS
|
|
|
360
358
|
Name of the build profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
361
359
|
|
|
362
360
|
DESCRIPTION
|
|
363
|
-
|
|
361
|
+
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
364
362
|
```
|
|
365
363
|
|
|
366
|
-
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
364
|
+
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
367
365
|
|
|
368
366
|
## `eas build:list`
|
|
369
367
|
|
|
@@ -396,7 +394,7 @@ DESCRIPTION
|
|
|
396
394
|
list all builds for your project
|
|
397
395
|
```
|
|
398
396
|
|
|
399
|
-
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
397
|
+
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
400
398
|
|
|
401
399
|
## `eas build:view [BUILD_ID]`
|
|
402
400
|
|
|
@@ -413,11 +411,11 @@ DESCRIPTION
|
|
|
413
411
|
view a build for your project
|
|
414
412
|
```
|
|
415
413
|
|
|
416
|
-
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
414
|
+
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
417
415
|
|
|
418
416
|
## `eas channel:create [NAME]`
|
|
419
417
|
|
|
420
|
-
|
|
418
|
+
create a channel
|
|
421
419
|
|
|
422
420
|
```
|
|
423
421
|
USAGE
|
|
@@ -430,14 +428,14 @@ FLAGS
|
|
|
430
428
|
--json print output as a JSON object with the new channel ID, name and branch mapping.
|
|
431
429
|
|
|
432
430
|
DESCRIPTION
|
|
433
|
-
|
|
431
|
+
create a channel
|
|
434
432
|
```
|
|
435
433
|
|
|
436
|
-
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
434
|
+
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
437
435
|
|
|
438
436
|
## `eas channel:edit [NAME]`
|
|
439
437
|
|
|
440
|
-
|
|
438
|
+
point a channel at a new branch
|
|
441
439
|
|
|
442
440
|
```
|
|
443
441
|
USAGE
|
|
@@ -448,17 +446,17 @@ ARGUMENTS
|
|
|
448
446
|
|
|
449
447
|
FLAGS
|
|
450
448
|
--branch=<value> Name of the branch to point to
|
|
451
|
-
--json
|
|
449
|
+
--json Print output as a JSON object with the channel ID, name and branch mapping
|
|
452
450
|
|
|
453
451
|
DESCRIPTION
|
|
454
|
-
|
|
452
|
+
point a channel at a new branch
|
|
455
453
|
```
|
|
456
454
|
|
|
457
|
-
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
455
|
+
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
458
456
|
|
|
459
457
|
## `eas channel:list`
|
|
460
458
|
|
|
461
|
-
|
|
459
|
+
list all channels
|
|
462
460
|
|
|
463
461
|
```
|
|
464
462
|
USAGE
|
|
@@ -468,14 +466,14 @@ FLAGS
|
|
|
468
466
|
--json print output as a JSON object with the channel ID, name and branch mapping.
|
|
469
467
|
|
|
470
468
|
DESCRIPTION
|
|
471
|
-
|
|
469
|
+
list all channels
|
|
472
470
|
```
|
|
473
471
|
|
|
474
|
-
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
472
|
+
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
475
473
|
|
|
476
474
|
## `eas channel:view [NAME]`
|
|
477
475
|
|
|
478
|
-
|
|
476
|
+
view a channel
|
|
479
477
|
|
|
480
478
|
```
|
|
481
479
|
USAGE
|
|
@@ -488,14 +486,14 @@ FLAGS
|
|
|
488
486
|
--json print output as a JSON object with the channel ID, name and branch mapping.
|
|
489
487
|
|
|
490
488
|
DESCRIPTION
|
|
491
|
-
|
|
489
|
+
view a channel
|
|
492
490
|
```
|
|
493
491
|
|
|
494
|
-
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
492
|
+
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
495
493
|
|
|
496
494
|
## `eas config`
|
|
497
495
|
|
|
498
|
-
|
|
496
|
+
display project configuration (app.json + eas.json)
|
|
499
497
|
|
|
500
498
|
```
|
|
501
499
|
USAGE
|
|
@@ -506,24 +504,24 @@ FLAGS
|
|
|
506
504
|
--profile=<value>
|
|
507
505
|
|
|
508
506
|
DESCRIPTION
|
|
509
|
-
|
|
507
|
+
display project configuration (app.json + eas.json)
|
|
510
508
|
```
|
|
511
509
|
|
|
512
|
-
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
510
|
+
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/config.ts)_
|
|
513
511
|
|
|
514
512
|
## `eas credentials`
|
|
515
513
|
|
|
516
|
-
manage
|
|
514
|
+
manage credentials
|
|
517
515
|
|
|
518
516
|
```
|
|
519
517
|
USAGE
|
|
520
518
|
$ eas credentials
|
|
521
519
|
|
|
522
520
|
DESCRIPTION
|
|
523
|
-
manage
|
|
521
|
+
manage credentials
|
|
524
522
|
```
|
|
525
523
|
|
|
526
|
-
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
524
|
+
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/credentials.ts)_
|
|
527
525
|
|
|
528
526
|
## `eas device:create`
|
|
529
527
|
|
|
@@ -537,7 +535,7 @@ DESCRIPTION
|
|
|
537
535
|
register new Apple Devices to use for internal distribution
|
|
538
536
|
```
|
|
539
537
|
|
|
540
|
-
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
538
|
+
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
541
539
|
|
|
542
540
|
## `eas device:delete`
|
|
543
541
|
|
|
@@ -555,7 +553,7 @@ DESCRIPTION
|
|
|
555
553
|
remove a registered device from your account
|
|
556
554
|
```
|
|
557
555
|
|
|
558
|
-
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
556
|
+
_See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
559
557
|
|
|
560
558
|
## `eas device:list`
|
|
561
559
|
|
|
@@ -572,7 +570,7 @@ DESCRIPTION
|
|
|
572
570
|
list all registered devices for your account
|
|
573
571
|
```
|
|
574
572
|
|
|
575
|
-
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
573
|
+
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
576
574
|
|
|
577
575
|
## `eas device:view [UDID]`
|
|
578
576
|
|
|
@@ -586,21 +584,21 @@ DESCRIPTION
|
|
|
586
584
|
view a device for your project
|
|
587
585
|
```
|
|
588
586
|
|
|
589
|
-
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
587
|
+
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
590
588
|
|
|
591
589
|
## `eas diagnostics`
|
|
592
590
|
|
|
593
|
-
|
|
591
|
+
display environment info
|
|
594
592
|
|
|
595
593
|
```
|
|
596
594
|
USAGE
|
|
597
595
|
$ eas diagnostics
|
|
598
596
|
|
|
599
597
|
DESCRIPTION
|
|
600
|
-
|
|
598
|
+
display environment info
|
|
601
599
|
```
|
|
602
600
|
|
|
603
|
-
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
601
|
+
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
604
602
|
|
|
605
603
|
## `eas help [COMMAND]`
|
|
606
604
|
|
|
@@ -620,7 +618,7 @@ DESCRIPTION
|
|
|
620
618
|
Display help for eas.
|
|
621
619
|
```
|
|
622
620
|
|
|
623
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.
|
|
621
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.12/src/commands/help.ts)_
|
|
624
622
|
|
|
625
623
|
## `eas project:info`
|
|
626
624
|
|
|
@@ -634,7 +632,7 @@ DESCRIPTION
|
|
|
634
632
|
information about the current project
|
|
635
633
|
```
|
|
636
634
|
|
|
637
|
-
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
635
|
+
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
638
636
|
|
|
639
637
|
## `eas project:init`
|
|
640
638
|
|
|
@@ -651,11 +649,11 @@ ALIASES
|
|
|
651
649
|
$ eas init
|
|
652
650
|
```
|
|
653
651
|
|
|
654
|
-
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
652
|
+
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
655
653
|
|
|
656
654
|
## `eas secret:create`
|
|
657
655
|
|
|
658
|
-
|
|
656
|
+
create an environment secret on the current project or owner account
|
|
659
657
|
|
|
660
658
|
```
|
|
661
659
|
USAGE
|
|
@@ -668,14 +666,14 @@ FLAGS
|
|
|
668
666
|
--value=<value> Value of the secret
|
|
669
667
|
|
|
670
668
|
DESCRIPTION
|
|
671
|
-
|
|
669
|
+
create an environment secret on the current project or owner account
|
|
672
670
|
```
|
|
673
671
|
|
|
674
|
-
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
672
|
+
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/secret/create.ts)_
|
|
675
673
|
|
|
676
674
|
## `eas secret:delete`
|
|
677
675
|
|
|
678
|
-
|
|
676
|
+
delete an environment secret by ID
|
|
679
677
|
|
|
680
678
|
```
|
|
681
679
|
USAGE
|
|
@@ -685,30 +683,28 @@ FLAGS
|
|
|
685
683
|
--id=<value> ID of the secret to delete
|
|
686
684
|
|
|
687
685
|
DESCRIPTION
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
Unsure where to find the secret's ID? Run eas secret:list
|
|
686
|
+
delete an environment secret by ID
|
|
691
687
|
```
|
|
692
688
|
|
|
693
|
-
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
689
|
+
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
694
690
|
|
|
695
691
|
## `eas secret:list`
|
|
696
692
|
|
|
697
|
-
|
|
693
|
+
list environment secrets available for your current app
|
|
698
694
|
|
|
699
695
|
```
|
|
700
696
|
USAGE
|
|
701
697
|
$ eas secret:list
|
|
702
698
|
|
|
703
699
|
DESCRIPTION
|
|
704
|
-
|
|
700
|
+
list environment secrets available for your current app
|
|
705
701
|
```
|
|
706
702
|
|
|
707
|
-
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
703
|
+
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/secret/list.ts)_
|
|
708
704
|
|
|
709
705
|
## `eas submit`
|
|
710
706
|
|
|
711
|
-
|
|
707
|
+
submit app binary to App Store and/or Play Store
|
|
712
708
|
|
|
713
709
|
```
|
|
714
710
|
USAGE
|
|
@@ -728,24 +724,22 @@ FLAGS
|
|
|
728
724
|
--[no-]wait Wait for submission to complete
|
|
729
725
|
|
|
730
726
|
DESCRIPTION
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
See how to configure submits with eas.json: https://docs.expo.dev/submit/eas-json/
|
|
727
|
+
submit app binary to App Store and/or Play Store
|
|
734
728
|
|
|
735
729
|
ALIASES
|
|
736
730
|
$ eas build:submit
|
|
737
731
|
```
|
|
738
732
|
|
|
739
|
-
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
733
|
+
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/submit.ts)_
|
|
740
734
|
|
|
741
735
|
## `eas update`
|
|
742
736
|
|
|
743
|
-
|
|
737
|
+
publish an update group
|
|
744
738
|
|
|
745
739
|
```
|
|
746
740
|
USAGE
|
|
747
741
|
$ eas update [--branch <value>] [--message <value>] [--republish | --input-dir <value> | --skip-bundler]
|
|
748
|
-
[--group <value> | | ] [-p android|ios|all] [--json] [--auto]
|
|
742
|
+
[--group <value> | | ] [-p android|ios|all] [--json] [--auto] [--private-key-path <value>]
|
|
749
743
|
|
|
750
744
|
FLAGS
|
|
751
745
|
-p, --platform=(android|ios|all) [default: all]
|
|
@@ -755,32 +749,38 @@ FLAGS
|
|
|
755
749
|
--input-dir=<value> [default: dist] Location of the bundle
|
|
756
750
|
--json Enable JSON output, non-JSON messages will be printed to stderr
|
|
757
751
|
--message=<value> A short message describing the update
|
|
752
|
+
--private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
|
|
753
|
+
expo-updates' configuration. Defaults to a file named "private-key.pem" in the
|
|
754
|
+
certificate's directory.
|
|
758
755
|
--republish Republish an update group
|
|
759
756
|
--skip-bundler Skip running Expo CLI to bundle the app before publishing
|
|
760
757
|
|
|
761
758
|
DESCRIPTION
|
|
762
|
-
|
|
759
|
+
publish an update group
|
|
763
760
|
```
|
|
764
761
|
|
|
765
|
-
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
762
|
+
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
766
763
|
|
|
767
764
|
## `eas update:configure`
|
|
768
765
|
|
|
769
|
-
|
|
766
|
+
configure the project to support EAS Update
|
|
770
767
|
|
|
771
768
|
```
|
|
772
769
|
USAGE
|
|
773
|
-
$ eas update:configure
|
|
770
|
+
$ eas update:configure [-p android|ios|all]
|
|
771
|
+
|
|
772
|
+
FLAGS
|
|
773
|
+
-p, --platform=(android|ios|all) [default: all] Platform to configure
|
|
774
774
|
|
|
775
775
|
DESCRIPTION
|
|
776
|
-
|
|
776
|
+
configure the project to support EAS Update
|
|
777
777
|
```
|
|
778
778
|
|
|
779
|
-
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
779
|
+
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
780
780
|
|
|
781
781
|
## `eas update:delete GROUPID`
|
|
782
782
|
|
|
783
|
-
|
|
783
|
+
delete all the updates in an update group
|
|
784
784
|
|
|
785
785
|
```
|
|
786
786
|
USAGE
|
|
@@ -793,14 +793,14 @@ FLAGS
|
|
|
793
793
|
--json Return a json with the group ID of the deleted updates.
|
|
794
794
|
|
|
795
795
|
DESCRIPTION
|
|
796
|
-
|
|
796
|
+
delete all the updates in an update group
|
|
797
797
|
```
|
|
798
798
|
|
|
799
|
-
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
799
|
+
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
800
800
|
|
|
801
801
|
## `eas update:list`
|
|
802
802
|
|
|
803
|
-
|
|
803
|
+
view the recent updates for a branch
|
|
804
804
|
|
|
805
805
|
```
|
|
806
806
|
USAGE
|
|
@@ -812,14 +812,14 @@ FLAGS
|
|
|
812
812
|
--json Return a json with all of the recent update groups.
|
|
813
813
|
|
|
814
814
|
DESCRIPTION
|
|
815
|
-
|
|
815
|
+
view the recent updates for a branch
|
|
816
816
|
```
|
|
817
817
|
|
|
818
|
-
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
818
|
+
_See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
819
819
|
|
|
820
820
|
## `eas update:view GROUPID`
|
|
821
821
|
|
|
822
|
-
|
|
822
|
+
update group details
|
|
823
823
|
|
|
824
824
|
```
|
|
825
825
|
USAGE
|
|
@@ -832,14 +832,14 @@ FLAGS
|
|
|
832
832
|
--json Return a json with the updates belonging to the group.
|
|
833
833
|
|
|
834
834
|
DESCRIPTION
|
|
835
|
-
|
|
835
|
+
update group details
|
|
836
836
|
```
|
|
837
837
|
|
|
838
|
-
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
838
|
+
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
839
839
|
|
|
840
840
|
## `eas webhook:create`
|
|
841
841
|
|
|
842
|
-
|
|
842
|
+
create a webhook
|
|
843
843
|
|
|
844
844
|
```
|
|
845
845
|
USAGE
|
|
@@ -852,14 +852,14 @@ FLAGS
|
|
|
852
852
|
--url=<value> Webhook URL
|
|
853
853
|
|
|
854
854
|
DESCRIPTION
|
|
855
|
-
|
|
855
|
+
create a webhook
|
|
856
856
|
```
|
|
857
857
|
|
|
858
|
-
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
858
|
+
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
859
859
|
|
|
860
860
|
## `eas webhook:delete [ID]`
|
|
861
861
|
|
|
862
|
-
|
|
862
|
+
delete a webhook
|
|
863
863
|
|
|
864
864
|
```
|
|
865
865
|
USAGE
|
|
@@ -869,14 +869,14 @@ ARGUMENTS
|
|
|
869
869
|
ID ID of the webhook to delete
|
|
870
870
|
|
|
871
871
|
DESCRIPTION
|
|
872
|
-
|
|
872
|
+
delete a webhook
|
|
873
873
|
```
|
|
874
874
|
|
|
875
|
-
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
875
|
+
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
876
876
|
|
|
877
877
|
## `eas webhook:list`
|
|
878
878
|
|
|
879
|
-
|
|
879
|
+
list webhooks
|
|
880
880
|
|
|
881
881
|
```
|
|
882
882
|
USAGE
|
|
@@ -886,14 +886,14 @@ FLAGS
|
|
|
886
886
|
--event=(BUILD|SUBMIT) Event type that triggers the webhook
|
|
887
887
|
|
|
888
888
|
DESCRIPTION
|
|
889
|
-
|
|
889
|
+
list webhooks
|
|
890
890
|
```
|
|
891
891
|
|
|
892
|
-
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
892
|
+
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
893
893
|
|
|
894
894
|
## `eas webhook:update`
|
|
895
895
|
|
|
896
|
-
|
|
896
|
+
update a webhook
|
|
897
897
|
|
|
898
898
|
```
|
|
899
899
|
USAGE
|
|
@@ -907,14 +907,14 @@ FLAGS
|
|
|
907
907
|
--url=<value> Webhook URL
|
|
908
908
|
|
|
909
909
|
DESCRIPTION
|
|
910
|
-
|
|
910
|
+
update a webhook
|
|
911
911
|
```
|
|
912
912
|
|
|
913
|
-
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
913
|
+
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
914
914
|
|
|
915
915
|
## `eas webhook:view ID`
|
|
916
916
|
|
|
917
|
-
|
|
917
|
+
view a webhook
|
|
918
918
|
|
|
919
919
|
```
|
|
920
920
|
USAGE
|
|
@@ -924,8 +924,8 @@ ARGUMENTS
|
|
|
924
924
|
ID ID of the webhook to view
|
|
925
925
|
|
|
926
926
|
DESCRIPTION
|
|
927
|
-
|
|
927
|
+
view a webhook
|
|
928
928
|
```
|
|
929
929
|
|
|
930
|
-
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
930
|
+
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.48.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
931
931
|
<!-- commandsstop -->
|