@donotuse/eas-cli 18.5.0-rc.1
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 +2520 -0
- package/bin/dev +10 -0
- package/bin/dev.cmd +3 -0
- package/bin/run +6 -0
- package/bin/run.cmd +3 -0
- package/build/ApiV2Error.d.ts +17 -0
- package/build/ApiV2Error.js +20 -0
- package/build/analytics/AnalyticsManager.d.ts +79 -0
- package/build/analytics/AnalyticsManager.js +189 -0
- package/build/analytics/common.d.ts +7 -0
- package/build/analytics/common.js +18 -0
- package/build/api.d.ts +23 -0
- package/build/api.js +111 -0
- package/build/branch/actions/SelectBranch.d.ts +33 -0
- package/build/branch/actions/SelectBranch.js +67 -0
- package/build/branch/delete.d.ts +5 -0
- package/build/branch/delete.js +23 -0
- package/build/branch/queries.d.ts +23 -0
- package/build/branch/queries.js +127 -0
- package/build/branch/utils.d.ts +5 -0
- package/build/branch/utils.js +13 -0
- package/build/build/android/build.d.ts +9 -0
- package/build/build/android/build.js +126 -0
- package/build/build/android/graphql.d.ts +3 -0
- package/build/build/android/graphql.js +40 -0
- package/build/build/android/prepareJob.d.ts +9 -0
- package/build/build/android/prepareJob.js +101 -0
- package/build/build/android/syncProjectConfiguration.d.ts +12 -0
- package/build/build/android/syncProjectConfiguration.js +57 -0
- package/build/build/android/version.d.ts +42 -0
- package/build/build/android/version.js +186 -0
- package/build/build/build.d.ts +32 -0
- package/build/build/build.js +530 -0
- package/build/build/configure.d.ts +27 -0
- package/build/build/configure.js +110 -0
- package/build/build/context.d.ts +64 -0
- package/build/build/context.js +2 -0
- package/build/build/createContext.d.ts +35 -0
- package/build/build/createContext.js +145 -0
- package/build/build/errors.d.ts +25 -0
- package/build/build/errors.js +40 -0
- package/build/build/evaluateConfigWithEnvVarsAsync.d.ts +14 -0
- package/build/build/evaluateConfigWithEnvVarsAsync.js +70 -0
- package/build/build/graphql.d.ts +13 -0
- package/build/build/graphql.js +106 -0
- package/build/build/ios/build.d.ts +5 -0
- package/build/build/ios/build.js +94 -0
- package/build/build/ios/credentials.d.ts +8 -0
- package/build/build/ios/credentials.js +43 -0
- package/build/build/ios/graphql.d.ts +6 -0
- package/build/build/ios/graphql.js +49 -0
- package/build/build/ios/prepareJob.d.ts +12 -0
- package/build/build/ios/prepareJob.js +119 -0
- package/build/build/ios/syncProjectConfiguration.d.ts +13 -0
- package/build/build/ios/syncProjectConfiguration.js +35 -0
- package/build/build/ios/version.d.ts +49 -0
- package/build/build/ios/version.js +273 -0
- package/build/build/local.d.ts +28 -0
- package/build/build/local.js +100 -0
- package/build/build/metadata.d.ts +8 -0
- package/build/build/metadata.js +137 -0
- package/build/build/queries.d.ts +22 -0
- package/build/build/queries.js +135 -0
- package/build/build/runBuildAndSubmit.d.ts +44 -0
- package/build/build/runBuildAndSubmit.js +420 -0
- package/build/build/types.d.ts +34 -0
- package/build/build/types.js +20 -0
- package/build/build/utils/appJson.d.ts +6 -0
- package/build/build/utils/appJson.js +25 -0
- package/build/build/utils/credentials.d.ts +3 -0
- package/build/build/utils/credentials.js +18 -0
- package/build/build/utils/devClient.d.ts +9 -0
- package/build/build/utils/devClient.js +96 -0
- package/build/build/utils/environment.d.ts +5 -0
- package/build/build/utils/environment.js +9 -0
- package/build/build/utils/formatBuild.d.ts +4 -0
- package/build/build/utils/formatBuild.js +157 -0
- package/build/build/utils/printBuildInfo.d.ts +5 -0
- package/build/build/utils/printBuildInfo.js +127 -0
- package/build/build/utils/repository.d.ts +19 -0
- package/build/build/utils/repository.js +195 -0
- package/build/build/utils/resourceClass.d.ts +4 -0
- package/build/build/utils/resourceClass.js +52 -0
- package/build/build/utils/url.d.ts +9 -0
- package/build/build/utils/url.js +46 -0
- package/build/build/utils/version.d.ts +7 -0
- package/build/build/utils/version.js +36 -0
- package/build/build/validate.d.ts +5 -0
- package/build/build/validate.js +159 -0
- package/build/channel/actions/SelectChannel.d.ts +33 -0
- package/build/channel/actions/SelectChannel.js +67 -0
- package/build/channel/branch-mapping.d.ts +55 -0
- package/build/channel/branch-mapping.js +145 -0
- package/build/channel/delete.d.ts +5 -0
- package/build/channel/delete.js +23 -0
- package/build/channel/errors.d.ts +3 -0
- package/build/channel/errors.js +9 -0
- package/build/channel/print-utils.d.ts +7 -0
- package/build/channel/print-utils.js +57 -0
- package/build/channel/queries.d.ts +46 -0
- package/build/channel/queries.js +274 -0
- package/build/channel/utils.d.ts +13 -0
- package/build/channel/utils.js +15 -0
- package/build/commandUtils/EasCommand.d.ts +151 -0
- package/build/commandUtils/EasCommand.js +214 -0
- package/build/commandUtils/builds.d.ts +16 -0
- package/build/commandUtils/builds.js +84 -0
- package/build/commandUtils/context/AnalyticsContextField.d.ts +5 -0
- package/build/commandUtils/context/AnalyticsContextField.js +10 -0
- package/build/commandUtils/context/ContextField.d.ts +16 -0
- package/build/commandUtils/context/ContextField.js +5 -0
- package/build/commandUtils/context/DynamicLoggedInContextField.d.ts +14 -0
- package/build/commandUtils/context/DynamicLoggedInContextField.js +25 -0
- package/build/commandUtils/context/DynamicProjectConfigContextField.d.ts +14 -0
- package/build/commandUtils/context/DynamicProjectConfigContextField.js +84 -0
- package/build/commandUtils/context/LoggedInContextField.d.ts +15 -0
- package/build/commandUtils/context/LoggedInContextField.js +23 -0
- package/build/commandUtils/context/MaybeLoggedInContextField.d.ts +17 -0
- package/build/commandUtils/context/MaybeLoggedInContextField.js +25 -0
- package/build/commandUtils/context/OptionalPrivateProjectConfigContextField.d.ts +13 -0
- package/build/commandUtils/context/OptionalPrivateProjectConfigContextField.js +52 -0
- package/build/commandUtils/context/PrivateProjectConfigContextField.d.ts +13 -0
- package/build/commandUtils/context/PrivateProjectConfigContextField.js +39 -0
- package/build/commandUtils/context/ProjectDirContextField.d.ts +4 -0
- package/build/commandUtils/context/ProjectDirContextField.js +11 -0
- package/build/commandUtils/context/ProjectIdContextField.d.ts +4 -0
- package/build/commandUtils/context/ProjectIdContextField.js +19 -0
- package/build/commandUtils/context/ServerSideEnvironmentVariablesContextField.d.ts +5 -0
- package/build/commandUtils/context/ServerSideEnvironmentVariablesContextField.js +36 -0
- package/build/commandUtils/context/SessionManagementContextField.d.ts +5 -0
- package/build/commandUtils/context/SessionManagementContextField.js +10 -0
- package/build/commandUtils/context/VcsClientContextField.d.ts +7 -0
- package/build/commandUtils/context/VcsClientContextField.js +19 -0
- package/build/commandUtils/context/contextUtils/createGraphqlClient.d.ts +7 -0
- package/build/commandUtils/context/contextUtils/createGraphqlClient.js +41 -0
- package/build/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.d.ts +19 -0
- package/build/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.js +103 -0
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.d.ts +38 -0
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +139 -0
- package/build/commandUtils/context/contextUtils/loadServerSideEnvironmentVariablesAsync.d.ts +6 -0
- package/build/commandUtils/context/contextUtils/loadServerSideEnvironmentVariablesAsync.js +30 -0
- package/build/commandUtils/errors.d.ts +3 -0
- package/build/commandUtils/errors.js +11 -0
- package/build/commandUtils/experienceParser.d.ts +6 -0
- package/build/commandUtils/experienceParser.js +42 -0
- package/build/commandUtils/flags.d.ts +43 -0
- package/build/commandUtils/flags.js +88 -0
- package/build/commandUtils/gating/FeatureGateEnvOverrides.d.ts +7 -0
- package/build/commandUtils/gating/FeatureGateEnvOverrides.js +34 -0
- package/build/commandUtils/gating/FeatureGateKey.d.ts +4 -0
- package/build/commandUtils/gating/FeatureGateKey.js +11 -0
- package/build/commandUtils/gating/FeatureGateTestOverrides.d.ts +5 -0
- package/build/commandUtils/gating/FeatureGateTestOverrides.js +17 -0
- package/build/commandUtils/gating/FeatureGating.d.ts +16 -0
- package/build/commandUtils/gating/FeatureGating.js +61 -0
- package/build/commandUtils/new/commands.d.ts +4 -0
- package/build/commandUtils/new/commands.js +69 -0
- package/build/commandUtils/new/configs.d.ts +24 -0
- package/build/commandUtils/new/configs.js +129 -0
- package/build/commandUtils/new/projectFiles.d.ts +8 -0
- package/build/commandUtils/new/projectFiles.js +157 -0
- package/build/commandUtils/new/templates/.eas/workflows/create-development-builds.yml +21 -0
- package/build/commandUtils/new/templates/.eas/workflows/create-draft.yml +15 -0
- package/build/commandUtils/new/templates/.eas/workflows/deploy-to-production.yml +68 -0
- package/build/commandUtils/new/templates/AGENTS.md +162 -0
- package/build/commandUtils/new/templates/CLAUDE.md +9 -0
- package/build/commandUtils/new/templates/readme-additions.md +36 -0
- package/build/commandUtils/new/utils.d.ts +6 -0
- package/build/commandUtils/new/utils.js +20 -0
- package/build/commandUtils/pagination.d.ts +17 -0
- package/build/commandUtils/pagination.js +39 -0
- package/build/commandUtils/projectNameValidation.d.ts +8 -0
- package/build/commandUtils/projectNameValidation.js +30 -0
- package/build/commandUtils/usageUtils.d.ts +58 -0
- package/build/commandUtils/usageUtils.js +204 -0
- package/build/commandUtils/workflow/buildProfileUtils.d.ts +36 -0
- package/build/commandUtils/workflow/buildProfileUtils.js +209 -0
- package/build/commandUtils/workflow/creation.d.ts +20 -0
- package/build/commandUtils/workflow/creation.js +462 -0
- package/build/commandUtils/workflow/fetchLogs.d.ts +6 -0
- package/build/commandUtils/workflow/fetchLogs.js +44 -0
- package/build/commandUtils/workflow/inputs.d.ts +40 -0
- package/build/commandUtils/workflow/inputs.js +165 -0
- package/build/commandUtils/workflow/parse.d.ts +3 -0
- package/build/commandUtils/workflow/parse.js +12 -0
- package/build/commandUtils/workflow/stateMachine.d.ts +44 -0
- package/build/commandUtils/workflow/stateMachine.js +212 -0
- package/build/commandUtils/workflow/types.d.ts +40 -0
- package/build/commandUtils/workflow/types.js +13 -0
- package/build/commandUtils/workflow/utils.d.ts +33 -0
- package/build/commandUtils/workflow/utils.js +325 -0
- package/build/commandUtils/workflow/validation.d.ts +7 -0
- package/build/commandUtils/workflow/validation.js +159 -0
- package/build/commands/account/login.d.ts +14 -0
- package/build/commands/account/login.js +49 -0
- package/build/commands/account/logout.d.ts +9 -0
- package/build/commands/account/logout.js +18 -0
- package/build/commands/account/usage.d.ts +15 -0
- package/build/commands/account/usage.js +326 -0
- package/build/commands/account/view.d.ts +11 -0
- package/build/commands/account/view.js +67 -0
- package/build/commands/analytics.d.ts +8 -0
- package/build/commands/analytics.js +27 -0
- package/build/commands/branch/create.d.ts +17 -0
- package/build/commands/branch/create.js +65 -0
- package/build/commands/branch/delete.d.ts +16 -0
- package/build/commands/branch/delete.js +102 -0
- package/build/commands/branch/list.d.ts +15 -0
- package/build/commands/branch/list.js +32 -0
- package/build/commands/branch/publish.d.ts +6 -0
- package/build/commands/branch/publish.js +12 -0
- package/build/commands/branch/rename.d.ts +15 -0
- package/build/commands/branch/rename.js +99 -0
- package/build/commands/branch/view.d.ts +18 -0
- package/build/commands/branch/view.js +63 -0
- package/build/commands/build/cancel.d.ts +24 -0
- package/build/commands/build/cancel.js +131 -0
- package/build/commands/build/configure.d.ts +13 -0
- package/build/commands/build/configure.js +99 -0
- package/build/commands/build/delete.d.ts +24 -0
- package/build/commands/build/delete.js +114 -0
- package/build/commands/build/dev.d.ts +26 -0
- package/build/commands/build/dev.js +262 -0
- package/build/commands/build/download.d.ts +20 -0
- package/build/commands/build/download.js +116 -0
- package/build/commands/build/index.d.ts +39 -0
- package/build/commands/build/index.js +301 -0
- package/build/commands/build/inspect.d.ts +30 -0
- package/build/commands/build/inspect.js +153 -0
- package/build/commands/build/internal.d.ts +25 -0
- package/build/commands/build/internal.js +87 -0
- package/build/commands/build/list.d.ts +31 -0
- package/build/commands/build/list.js +157 -0
- package/build/commands/build/resign.d.ts +63 -0
- package/build/commands/build/resign.js +233 -0
- package/build/commands/build/run.d.ts +21 -0
- package/build/commands/build/run.js +191 -0
- package/build/commands/build/version/get.d.ts +18 -0
- package/build/commands/build/version/get.js +114 -0
- package/build/commands/build/version/set.d.ts +16 -0
- package/build/commands/build/version/set.js +105 -0
- package/build/commands/build/version/sync.d.ts +18 -0
- package/build/commands/build/version/sync.js +149 -0
- package/build/commands/build/view.d.ts +16 -0
- package/build/commands/build/view.js +77 -0
- package/build/commands/channel/create.d.ts +16 -0
- package/build/commands/channel/create.js +60 -0
- package/build/commands/channel/delete.d.ts +16 -0
- package/build/commands/channel/delete.js +84 -0
- package/build/commands/channel/edit.d.ts +20 -0
- package/build/commands/channel/edit.js +113 -0
- package/build/commands/channel/list.d.ts +15 -0
- package/build/commands/channel/list.js +36 -0
- package/build/commands/channel/pause.d.ts +20 -0
- package/build/commands/channel/pause.js +87 -0
- package/build/commands/channel/resume.d.ts +20 -0
- package/build/commands/channel/resume.js +87 -0
- package/build/commands/channel/rollout.d.ts +33 -0
- package/build/commands/channel/rollout.js +141 -0
- package/build/commands/channel/view.d.ts +18 -0
- package/build/commands/channel/view.js +61 -0
- package/build/commands/config.d.ts +19 -0
- package/build/commands/config.js +106 -0
- package/build/commands/credentials/configure-build.d.ts +18 -0
- package/build/commands/credentials/configure-build.js +42 -0
- package/build/commands/credentials/index.d.ts +16 -0
- package/build/commands/credentials/index.js +28 -0
- package/build/commands/deploy/alias/delete.d.ts +21 -0
- package/build/commands/deploy/alias/delete.js +101 -0
- package/build/commands/deploy/alias/index.d.ts +21 -0
- package/build/commands/deploy/alias/index.js +165 -0
- package/build/commands/deploy/alias.d.ts +21 -0
- package/build/commands/deploy/alias.js +165 -0
- package/build/commands/deploy/delete.d.ts +21 -0
- package/build/commands/deploy/delete.js +87 -0
- package/build/commands/deploy/index.d.ts +26 -0
- package/build/commands/deploy/index.js +370 -0
- package/build/commands/device/create.d.ts +9 -0
- package/build/commands/device/create.js +30 -0
- package/build/commands/device/delete.d.ts +24 -0
- package/build/commands/device/delete.js +135 -0
- package/build/commands/device/list.d.ts +16 -0
- package/build/commands/device/list.js +60 -0
- package/build/commands/device/rename.d.ts +24 -0
- package/build/commands/device/rename.js +125 -0
- package/build/commands/device/view.d.ts +12 -0
- package/build/commands/device/view.js +54 -0
- package/build/commands/diagnostics.d.ts +10 -0
- package/build/commands/diagnostics.js +61 -0
- package/build/commands/env/create.d.ts +26 -0
- package/build/commands/env/create.js +226 -0
- package/build/commands/env/delete.d.ts +19 -0
- package/build/commands/env/delete.js +115 -0
- package/build/commands/env/exec.d.ts +22 -0
- package/build/commands/env/exec.js +158 -0
- package/build/commands/env/get.d.ts +20 -0
- package/build/commands/env/get.js +130 -0
- package/build/commands/env/link.d.ts +23 -0
- package/build/commands/env/link.js +128 -0
- package/build/commands/env/list.d.ts +20 -0
- package/build/commands/env/list.js +123 -0
- package/build/commands/env/pull.d.ts +18 -0
- package/build/commands/env/pull.js +106 -0
- package/build/commands/env/push.d.ts +29 -0
- package/build/commands/env/push.js +193 -0
- package/build/commands/env/unlink.d.ts +22 -0
- package/build/commands/env/unlink.js +117 -0
- package/build/commands/env/update.d.ts +26 -0
- package/build/commands/env/update.js +229 -0
- package/build/commands/fingerprint/compare.d.ts +26 -0
- package/build/commands/fingerprint/compare.js +600 -0
- package/build/commands/fingerprint/generate.d.ts +23 -0
- package/build/commands/fingerprint/generate.js +123 -0
- package/build/commands/go.d.ts +23 -0
- package/build/commands/go.js +483 -0
- package/build/commands/metadata/lint.d.ts +12 -0
- package/build/commands/metadata/lint.js +73 -0
- package/build/commands/metadata/pull.d.ts +14 -0
- package/build/commands/metadata/pull.js +81 -0
- package/build/commands/metadata/push.d.ts +14 -0
- package/build/commands/metadata/push.js +75 -0
- package/build/commands/open.d.ts +9 -0
- package/build/commands/open.js +41 -0
- package/build/commands/project/info.d.ts +9 -0
- package/build/commands/project/info.js +45 -0
- package/build/commands/project/init.d.ts +22 -0
- package/build/commands/project/init.js +317 -0
- package/build/commands/project/new.d.ts +34 -0
- package/build/commands/project/new.js +120 -0
- package/build/commands/project/onboarding.d.ts +14 -0
- package/build/commands/project/onboarding.js +372 -0
- package/build/commands/secret/create.d.ts +20 -0
- package/build/commands/secret/create.js +187 -0
- package/build/commands/secret/delete.d.ts +14 -0
- package/build/commands/secret/delete.js +70 -0
- package/build/commands/secret/list.d.ts +10 -0
- package/build/commands/secret/list.js +38 -0
- package/build/commands/secret/push.d.ts +17 -0
- package/build/commands/secret/push.js +150 -0
- package/build/commands/submit/internal.d.ts +24 -0
- package/build/commands/submit/internal.js +167 -0
- package/build/commands/submit.d.ts +29 -0
- package/build/commands/submit.js +166 -0
- package/build/commands/update/configure.d.ts +16 -0
- package/build/commands/update/configure.js +63 -0
- package/build/commands/update/delete.d.ts +15 -0
- package/build/commands/update/delete.js +58 -0
- package/build/commands/update/edit.d.ts +18 -0
- package/build/commands/update/edit.js +138 -0
- package/build/commands/update/index.d.ts +38 -0
- package/build/commands/update/index.js +545 -0
- package/build/commands/update/list.d.ts +20 -0
- package/build/commands/update/list.js +113 -0
- package/build/commands/update/republish.d.ts +23 -0
- package/build/commands/update/republish.js +150 -0
- package/build/commands/update/revert-update-rollout.d.ts +24 -0
- package/build/commands/update/revert-update-rollout.js +263 -0
- package/build/commands/update/roll-back-to-embedded.d.ts +22 -0
- package/build/commands/update/roll-back-to-embedded.js +150 -0
- package/build/commands/update/rollback.d.ts +8 -0
- package/build/commands/update/rollback.js +39 -0
- package/build/commands/update/view.d.ts +14 -0
- package/build/commands/update/view.js +43 -0
- package/build/commands/upload.d.ts +18 -0
- package/build/commands/upload.js +367 -0
- package/build/commands/webhook/create.d.ts +16 -0
- package/build/commands/webhook/create.js +47 -0
- package/build/commands/webhook/delete.d.ts +15 -0
- package/build/commands/webhook/delete.js +102 -0
- package/build/commands/webhook/list.d.ts +14 -0
- package/build/commands/webhook/list.js +62 -0
- package/build/commands/webhook/update.d.ts +16 -0
- package/build/commands/webhook/update.js +52 -0
- package/build/commands/webhook/view.d.ts +11 -0
- package/build/commands/webhook/view.js +36 -0
- package/build/commands/worker/alias.d.ts +22 -0
- package/build/commands/worker/alias.js +169 -0
- package/build/commands/worker/deploy.d.ts +76 -0
- package/build/commands/worker/deploy.js +323 -0
- package/build/commands/workflow/cancel.d.ts +13 -0
- package/build/commands/workflow/cancel.js +81 -0
- package/build/commands/workflow/create.d.ts +17 -0
- package/build/commands/workflow/create.js +171 -0
- package/build/commands/workflow/list.d.ts +13 -0
- package/build/commands/workflow/list.js +53 -0
- package/build/commands/workflow/logs.d.ts +17 -0
- package/build/commands/workflow/logs.js +96 -0
- package/build/commands/workflow/run.d.ts +63 -0
- package/build/commands/workflow/run.js +318 -0
- package/build/commands/workflow/runs.d.ts +16 -0
- package/build/commands/workflow/runs.js +73 -0
- package/build/commands/workflow/status.d.ts +31 -0
- package/build/commands/workflow/status.js +111 -0
- package/build/commands/workflow/validate.d.ts +18 -0
- package/build/commands/workflow/validate.js +51 -0
- package/build/commands/workflow/view.d.ts +16 -0
- package/build/commands/workflow/view.js +169 -0
- package/build/credentials/android/AndroidCredentialsProvider.d.ts +23 -0
- package/build/credentials/android/AndroidCredentialsProvider.js +44 -0
- package/build/credentials/android/actions/AssignFcm.d.ts +8 -0
- package/build/credentials/android/actions/AssignFcm.js +20 -0
- package/build/credentials/android/actions/AssignGoogleServiceAccountKeyForFcmV1.d.ts +8 -0
- package/build/credentials/android/actions/AssignGoogleServiceAccountKeyForFcmV1.js +20 -0
- package/build/credentials/android/actions/AssignGoogleServiceAccountKeyForSubmissions.d.ts +8 -0
- package/build/credentials/android/actions/AssignGoogleServiceAccountKeyForSubmissions.js +20 -0
- package/build/credentials/android/actions/BuildCredentialsUtils.d.ts +20 -0
- package/build/credentials/android/actions/BuildCredentialsUtils.js +115 -0
- package/build/credentials/android/actions/CreateFcm.d.ts +7 -0
- package/build/credentials/android/actions/CreateFcm.js +30 -0
- package/build/credentials/android/actions/CreateGoogleServiceAccountKey.d.ts +9 -0
- package/build/credentials/android/actions/CreateGoogleServiceAccountKey.js +63 -0
- package/build/credentials/android/actions/CreateKeystore.d.ts +8 -0
- package/build/credentials/android/actions/CreateKeystore.js +34 -0
- package/build/credentials/android/actions/DownloadKeystore.d.ts +19 -0
- package/build/credentials/android/actions/DownloadKeystore.js +68 -0
- package/build/credentials/android/actions/RemoveFcm.d.ts +7 -0
- package/build/credentials/android/actions/RemoveFcm.js +34 -0
- package/build/credentials/android/actions/RemoveGoogleServiceAccountKey.d.ts +12 -0
- package/build/credentials/android/actions/RemoveGoogleServiceAccountKey.js +50 -0
- package/build/credentials/android/actions/RemoveKeystore.d.ts +9 -0
- package/build/credentials/android/actions/RemoveKeystore.js +45 -0
- package/build/credentials/android/actions/SetUpBuildCredentials.d.ts +33 -0
- package/build/credentials/android/actions/SetUpBuildCredentials.js +72 -0
- package/build/credentials/android/actions/SetUpBuildCredentialsFromCredentialsJson.d.ts +8 -0
- package/build/credentials/android/actions/SetUpBuildCredentialsFromCredentialsJson.js +69 -0
- package/build/credentials/android/actions/SetUpGoogleServiceAccountKeyForFcmV1.d.ts +10 -0
- package/build/credentials/android/actions/SetUpGoogleServiceAccountKeyForFcmV1.js +60 -0
- package/build/credentials/android/actions/SetUpGoogleServiceAccountKeyForSubmissions.d.ts +10 -0
- package/build/credentials/android/actions/SetUpGoogleServiceAccountKeyForSubmissions.js +60 -0
- package/build/credentials/android/actions/UpdateCredentialsJson.d.ts +5 -0
- package/build/credentials/android/actions/UpdateCredentialsJson.js +14 -0
- package/build/credentials/android/actions/UseExistingGoogleServiceAccountKey.d.ts +7 -0
- package/build/credentials/android/actions/UseExistingGoogleServiceAccountKey.js +24 -0
- package/build/credentials/android/api/GraphqlClient.d.ts +41 -0
- package/build/credentials/android/api/GraphqlClient.js +151 -0
- package/build/credentials/android/api/graphql/mutations/AndroidAppBuildCredentialsMutation.d.ts +8 -0
- package/build/credentials/android/api/graphql/mutations/AndroidAppBuildCredentialsMutation.js +80 -0
- package/build/credentials/android/api/graphql/mutations/AndroidAppCredentialsMutation.d.ts +10 -0
- package/build/credentials/android/api/graphql/mutations/AndroidAppCredentialsMutation.js +112 -0
- package/build/credentials/android/api/graphql/mutations/AndroidFcmMutation.d.ts +6 -0
- package/build/credentials/android/api/graphql/mutations/AndroidFcmMutation.js +48 -0
- package/build/credentials/android/api/graphql/mutations/AndroidKeystoreMutation.d.ts +6 -0
- package/build/credentials/android/api/graphql/mutations/AndroidKeystoreMutation.js +54 -0
- package/build/credentials/android/api/graphql/mutations/GoogleServiceAccountKeyMutation.d.ts +6 -0
- package/build/credentials/android/api/graphql/mutations/GoogleServiceAccountKeyMutation.js +54 -0
- package/build/credentials/android/api/graphql/queries/AndroidAppCredentialsQuery.d.ts +8 -0
- package/build/credentials/android/api/graphql/queries/AndroidAppCredentialsQuery.js +51 -0
- package/build/credentials/android/api/graphql/queries/GoogleServiceAccountKeyQuery.d.ts +11 -0
- package/build/credentials/android/api/graphql/queries/GoogleServiceAccountKeyQuery.js +69 -0
- package/build/credentials/android/credentials.d.ts +26 -0
- package/build/credentials/android/credentials.js +32 -0
- package/build/credentials/android/utils/googleServiceAccountKey.d.ts +7 -0
- package/build/credentials/android/utils/googleServiceAccountKey.js +123 -0
- package/build/credentials/android/utils/keystore.d.ts +5 -0
- package/build/credentials/android/utils/keystore.js +144 -0
- package/build/credentials/android/utils/keystoreNew.d.ts +5 -0
- package/build/credentials/android/utils/keystoreNew.js +84 -0
- package/build/credentials/android/utils/printCredentials.d.ts +8 -0
- package/build/credentials/android/utils/printCredentials.js +160 -0
- package/build/credentials/context.d.ts +50 -0
- package/build/credentials/context.js +89 -0
- package/build/credentials/credentialsJson/read.d.ts +7 -0
- package/build/credentials/credentialsJson/read.js +90 -0
- package/build/credentials/credentialsJson/types.d.ts +34 -0
- package/build/credentials/credentialsJson/types.js +26 -0
- package/build/credentials/credentialsJson/update.d.ts +14 -0
- package/build/credentials/credentialsJson/update.js +208 -0
- package/build/credentials/credentialsJson/utils.d.ts +4 -0
- package/build/credentials/credentialsJson/utils.js +26 -0
- package/build/credentials/errors.d.ts +19 -0
- package/build/credentials/errors.js +44 -0
- package/build/credentials/ios/IosCredentialsProvider.d.ts +23 -0
- package/build/credentials/ios/IosCredentialsProvider.js +132 -0
- package/build/credentials/ios/actions/AppleTeamFormatting.d.ts +2 -0
- package/build/credentials/ios/actions/AppleTeamFormatting.js +6 -0
- package/build/credentials/ios/actions/AppleTeamUtils.d.ts +4 -0
- package/build/credentials/ios/actions/AppleTeamUtils.js +12 -0
- package/build/credentials/ios/actions/AscApiKeyUtils.d.ts +20 -0
- package/build/credentials/ios/actions/AscApiKeyUtils.js +196 -0
- package/build/credentials/ios/actions/AssignAscApiKey.d.ts +9 -0
- package/build/credentials/ios/actions/AssignAscApiKey.js +29 -0
- package/build/credentials/ios/actions/AssignPushKey.d.ts +8 -0
- package/build/credentials/ios/actions/AssignPushKey.js +22 -0
- package/build/credentials/ios/actions/BuildCredentialsUtils.d.ts +11 -0
- package/build/credentials/ios/actions/BuildCredentialsUtils.js +63 -0
- package/build/credentials/ios/actions/ConfigureProvisioningProfile.d.ts +14 -0
- package/build/credentials/ios/actions/ConfigureProvisioningProfile.js +81 -0
- package/build/credentials/ios/actions/CreateAscApiKey.d.ts +8 -0
- package/build/credentials/ios/actions/CreateAscApiKey.js +18 -0
- package/build/credentials/ios/actions/CreateDistributionCertificate.d.ts +8 -0
- package/build/credentials/ios/actions/CreateDistributionCertificate.js +19 -0
- package/build/credentials/ios/actions/CreateProvisioningProfile.d.ts +14 -0
- package/build/credentials/ios/actions/CreateProvisioningProfile.js +72 -0
- package/build/credentials/ios/actions/CreatePushKey.d.ts +7 -0
- package/build/credentials/ios/actions/CreatePushKey.js +22 -0
- package/build/credentials/ios/actions/DeviceUtils.d.ts +3 -0
- package/build/credentials/ios/actions/DeviceUtils.js +40 -0
- package/build/credentials/ios/actions/DistributionCertificateUtils.d.ts +14 -0
- package/build/credentials/ios/actions/DistributionCertificateUtils.js +192 -0
- package/build/credentials/ios/actions/ProvisioningProfileUtils.d.ts +5 -0
- package/build/credentials/ios/actions/ProvisioningProfileUtils.js +22 -0
- package/build/credentials/ios/actions/PushKeyUtils.d.ts +11 -0
- package/build/credentials/ios/actions/PushKeyUtils.js +175 -0
- package/build/credentials/ios/actions/RemoveAscApiKey.d.ts +12 -0
- package/build/credentials/ios/actions/RemoveAscApiKey.js +56 -0
- package/build/credentials/ios/actions/RemoveDistributionCertificate.d.ts +14 -0
- package/build/credentials/ios/actions/RemoveDistributionCertificate.js +88 -0
- package/build/credentials/ios/actions/RemoveProvisioningProfile.d.ts +9 -0
- package/build/credentials/ios/actions/RemoveProvisioningProfile.js +27 -0
- package/build/credentials/ios/actions/RemovePushKey.d.ts +12 -0
- package/build/credentials/ios/actions/RemovePushKey.js +64 -0
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.d.ts +21 -0
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.js +254 -0
- package/build/credentials/ios/actions/SetUpAscApiKey.d.ts +21 -0
- package/build/credentials/ios/actions/SetUpAscApiKey.js +122 -0
- package/build/credentials/ios/actions/SetUpBuildCredentials.d.ts +15 -0
- package/build/credentials/ios/actions/SetUpBuildCredentials.js +76 -0
- package/build/credentials/ios/actions/SetUpBuildCredentialsFromCredentialsJson.d.ts +11 -0
- package/build/credentials/ios/actions/SetUpBuildCredentialsFromCredentialsJson.js +49 -0
- package/build/credentials/ios/actions/SetUpDistributionCertificate.d.ts +17 -0
- package/build/credentials/ios/actions/SetUpDistributionCertificate.js +144 -0
- package/build/credentials/ios/actions/SetUpInternalProvisioningProfile.d.ts +24 -0
- package/build/credentials/ios/actions/SetUpInternalProvisioningProfile.js +94 -0
- package/build/credentials/ios/actions/SetUpProvisioningProfile.d.ts +19 -0
- package/build/credentials/ios/actions/SetUpProvisioningProfile.js +102 -0
- package/build/credentials/ios/actions/SetUpPushKey.d.ts +10 -0
- package/build/credentials/ios/actions/SetUpPushKey.js +83 -0
- package/build/credentials/ios/actions/SetUpTargetBuildCredentials.d.ts +20 -0
- package/build/credentials/ios/actions/SetUpTargetBuildCredentials.js +55 -0
- package/build/credentials/ios/actions/SetUpTargetBuildCredentialsFromCredentialsJson.d.ts +14 -0
- package/build/credentials/ios/actions/SetUpTargetBuildCredentialsFromCredentialsJson.js +112 -0
- package/build/credentials/ios/actions/UpdateCredentialsJson.d.ts +10 -0
- package/build/credentials/ios/actions/UpdateCredentialsJson.js +22 -0
- package/build/credentials/ios/api/GraphqlClient.d.ts +60 -0
- package/build/credentials/ios/api/GraphqlClient.js +300 -0
- package/build/credentials/ios/api/graphql/mutations/AppStoreConnectApiKeyMutation.d.ts +6 -0
- package/build/credentials/ios/api/graphql/mutations/AppStoreConnectApiKeyMutation.js +54 -0
- package/build/credentials/ios/api/graphql/mutations/AppleAppIdentifierMutation.d.ts +5 -0
- package/build/credentials/ios/api/graphql/mutations/AppleAppIdentifierMutation.js +37 -0
- package/build/credentials/ios/api/graphql/mutations/AppleDeviceMutation.d.ts +7 -0
- package/build/credentials/ios/api/graphql/mutations/AppleDeviceMutation.js +70 -0
- package/build/credentials/ios/api/graphql/mutations/AppleDeviceRegistrationRequestMutation.d.ts +5 -0
- package/build/credentials/ios/api/graphql/mutations/AppleDeviceRegistrationRequestMutation.js +35 -0
- package/build/credentials/ios/api/graphql/mutations/AppleDistributionCertificateMutation.d.ts +9 -0
- package/build/credentials/ios/api/graphql/mutations/AppleDistributionCertificateMutation.js +60 -0
- package/build/credentials/ios/api/graphql/mutations/AppleProvisioningProfileMutation.d.ts +13 -0
- package/build/credentials/ios/api/graphql/mutations/AppleProvisioningProfileMutation.js +91 -0
- package/build/credentials/ios/api/graphql/mutations/ApplePushKeyMutation.d.ts +6 -0
- package/build/credentials/ios/api/graphql/mutations/ApplePushKeyMutation.js +51 -0
- package/build/credentials/ios/api/graphql/mutations/AppleTeamMutation.d.ts +6 -0
- package/build/credentials/ios/api/graphql/mutations/AppleTeamMutation.js +51 -0
- package/build/credentials/ios/api/graphql/mutations/IosAppBuildCredentialsMutation.d.ts +7 -0
- package/build/credentials/ios/api/graphql/mutations/IosAppBuildCredentialsMutation.js +87 -0
- package/build/credentials/ios/api/graphql/mutations/IosAppCredentialsMutation.d.ts +7 -0
- package/build/credentials/ios/api/graphql/mutations/IosAppCredentialsMutation.js +84 -0
- package/build/credentials/ios/api/graphql/queries/AppStoreConnectApiKeyQuery.d.ts +11 -0
- package/build/credentials/ios/api/graphql/queries/AppStoreConnectApiKeyQuery.js +69 -0
- package/build/credentials/ios/api/graphql/queries/AppleAppIdentifierQuery.d.ts +5 -0
- package/build/credentials/ios/api/graphql/queries/AppleAppIdentifierQuery.js +37 -0
- package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.d.ts +27 -0
- package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.js +145 -0
- package/build/credentials/ios/api/graphql/queries/AppleDistributionCertificateQuery.d.ts +15 -0
- package/build/credentials/ios/api/graphql/queries/AppleDistributionCertificateQuery.js +119 -0
- package/build/credentials/ios/api/graphql/queries/AppleProvisioningProfileQuery.d.ts +15 -0
- package/build/credentials/ios/api/graphql/queries/AppleProvisioningProfileQuery.js +72 -0
- package/build/credentials/ios/api/graphql/queries/ApplePushKeyQuery.d.ts +11 -0
- package/build/credentials/ios/api/graphql/queries/ApplePushKeyQuery.js +69 -0
- package/build/credentials/ios/api/graphql/queries/AppleTeamQuery.d.ts +6 -0
- package/build/credentials/ios/api/graphql/queries/AppleTeamQuery.js +52 -0
- package/build/credentials/ios/api/graphql/queries/IosAppBuildCredentialsQuery.d.ts +8 -0
- package/build/credentials/ios/api/graphql/queries/IosAppBuildCredentialsQuery.js +46 -0
- package/build/credentials/ios/api/graphql/queries/IosAppCredentialsQuery.d.ts +11 -0
- package/build/credentials/ios/api/graphql/queries/IosAppCredentialsQuery.js +77 -0
- package/build/credentials/ios/api/graphql/types/AppLookupParams.d.ts +7 -0
- package/build/credentials/ios/api/graphql/types/AppLookupParams.js +2 -0
- package/build/credentials/ios/appstore/AppStoreApi.d.ts +33 -0
- package/build/credentials/ios/appstore/AppStoreApi.js +106 -0
- package/build/credentials/ios/appstore/Credentials.d.ts +9 -0
- package/build/credentials/ios/appstore/Credentials.js +35 -0
- package/build/credentials/ios/appstore/Credentials.types.d.ts +60 -0
- package/build/credentials/ios/appstore/Credentials.types.js +2 -0
- package/build/credentials/ios/appstore/CredentialsUtils.d.ts +18 -0
- package/build/credentials/ios/appstore/CredentialsUtils.js +78 -0
- package/build/credentials/ios/appstore/ascApiKey.d.ts +36 -0
- package/build/credentials/ios/appstore/ascApiKey.js +172 -0
- package/build/credentials/ios/appstore/authenticate.d.ts +20 -0
- package/build/credentials/ios/appstore/authenticate.js +171 -0
- package/build/credentials/ios/appstore/authenticateTypes.d.ts +41 -0
- package/build/credentials/ios/appstore/authenticateTypes.js +16 -0
- package/build/credentials/ios/appstore/bundleId.d.ts +3 -0
- package/build/credentials/ios/appstore/bundleId.js +43 -0
- package/build/credentials/ios/appstore/bundleIdCapabilities.d.ts +27 -0
- package/build/credentials/ios/appstore/bundleIdCapabilities.js +148 -0
- package/build/credentials/ios/appstore/capabilityIdentifiers.d.ts +18 -0
- package/build/credentials/ios/appstore/capabilityIdentifiers.js +109 -0
- package/build/credentials/ios/appstore/capabilityList.d.ts +32 -0
- package/build/credentials/ios/appstore/capabilityList.js +656 -0
- package/build/credentials/ios/appstore/constants.d.ts +1 -0
- package/build/credentials/ios/appstore/constants.js +6 -0
- package/build/credentials/ios/appstore/contractMessages.d.ts +7 -0
- package/build/credentials/ios/appstore/contractMessages.js +101 -0
- package/build/credentials/ios/appstore/distributionCertificate.d.ts +14 -0
- package/build/credentials/ios/appstore/distributionCertificate.js +111 -0
- package/build/credentials/ios/appstore/ensureAppExists.d.ts +53 -0
- package/build/credentials/ios/appstore/ensureAppExists.js +247 -0
- package/build/credentials/ios/appstore/ensureTestFlightGroup.d.ts +6 -0
- package/build/credentials/ios/appstore/ensureTestFlightGroup.js +175 -0
- package/build/credentials/ios/appstore/keychain.d.ts +10 -0
- package/build/credentials/ios/appstore/keychain.js +67 -0
- package/build/credentials/ios/appstore/provisioningProfile.d.ts +11 -0
- package/build/credentials/ios/appstore/provisioningProfile.js +181 -0
- package/build/credentials/ios/appstore/provisioningProfileAdhoc.d.ts +4 -0
- package/build/credentials/ios/appstore/provisioningProfileAdhoc.js +192 -0
- package/build/credentials/ios/appstore/pushKey.d.ts +18 -0
- package/build/credentials/ios/appstore/pushKey.js +82 -0
- package/build/credentials/ios/appstore/resolveCredentials.d.ts +19 -0
- package/build/credentials/ios/appstore/resolveCredentials.js +256 -0
- package/build/credentials/ios/credentials.d.ts +57 -0
- package/build/credentials/ios/credentials.js +105 -0
- package/build/credentials/ios/errors.d.ts +3 -0
- package/build/credentials/ios/errors.js +9 -0
- package/build/credentials/ios/types.d.ts +28 -0
- package/build/credentials/ios/types.js +37 -0
- package/build/credentials/ios/utils/authType.d.ts +3 -0
- package/build/credentials/ios/utils/authType.js +7 -0
- package/build/credentials/ios/utils/convertHTMLToASCII.d.ts +4 -0
- package/build/credentials/ios/utils/convertHTMLToASCII.js +58 -0
- package/build/credentials/ios/utils/p12Certificate.d.ts +4 -0
- package/build/credentials/ios/utils/p12Certificate.js +59 -0
- package/build/credentials/ios/utils/printCredentials.d.ts +5 -0
- package/build/credentials/ios/utils/printCredentials.js +251 -0
- package/build/credentials/ios/utils/provisioningProfile.d.ts +11 -0
- package/build/credentials/ios/utils/provisioningProfile.js +41 -0
- package/build/credentials/ios/validators/validateAscApiKey.d.ts +5 -0
- package/build/credentials/ios/validators/validateAscApiKey.js +20 -0
- package/build/credentials/ios/validators/validateDistributionCertificate.d.ts +3 -0
- package/build/credentials/ios/validators/validateDistributionCertificate.js +9 -0
- package/build/credentials/ios/validators/validateProvisioningProfile.d.ts +5 -0
- package/build/credentials/ios/validators/validateProvisioningProfile.js +114 -0
- package/build/credentials/ios/validators/validatePushKey.d.ts +3 -0
- package/build/credentials/ios/validators/validatePushKey.js +9 -0
- package/build/credentials/manager/Actions.d.ts +62 -0
- package/build/credentials/manager/Actions.js +63 -0
- package/build/credentials/manager/AndroidActions.d.ts +8 -0
- package/build/credentials/manager/AndroidActions.js +158 -0
- package/build/credentials/manager/CheckBuildProfileFlagAgainstEasJson.d.ts +10 -0
- package/build/credentials/manager/CheckBuildProfileFlagAgainstEasJson.js +38 -0
- package/build/credentials/manager/CreateAndroidBuildCredentials.d.ts +8 -0
- package/build/credentials/manager/CreateAndroidBuildCredentials.js +34 -0
- package/build/credentials/manager/HelperActions.d.ts +18 -0
- package/build/credentials/manager/HelperActions.js +15 -0
- package/build/credentials/manager/IosActions.d.ts +7 -0
- package/build/credentials/manager/IosActions.js +150 -0
- package/build/credentials/manager/ManageAndroid.d.ts +14 -0
- package/build/credentials/manager/ManageAndroid.js +223 -0
- package/build/credentials/manager/ManageIos.d.ts +22 -0
- package/build/credentials/manager/ManageIos.js +338 -0
- package/build/credentials/manager/SelectAndroidBuildCredentials.d.ts +27 -0
- package/build/credentials/manager/SelectAndroidBuildCredentials.js +98 -0
- package/build/credentials/manager/SelectBuildProfileFromEasJson.d.ts +9 -0
- package/build/credentials/manager/SelectBuildProfileFromEasJson.js +38 -0
- package/build/credentials/manager/SelectIosDistributionTypeGraphqlFromBuildProfile.d.ts +10 -0
- package/build/credentials/manager/SelectIosDistributionTypeGraphqlFromBuildProfile.js +63 -0
- package/build/credentials/manager/SelectPlatform.d.ts +17 -0
- package/build/credentials/manager/SelectPlatform.js +33 -0
- package/build/credentials/manager/SetDefaultAndroidKeystore.d.ts +8 -0
- package/build/credentials/manager/SetDefaultAndroidKeystore.js +42 -0
- package/build/credentials/manager/SetUpAndroidBuildCredentials.d.ts +7 -0
- package/build/credentials/manager/SetUpAndroidBuildCredentials.js +49 -0
- package/build/credentials/manager/SetUpBuildCredentialsCommandAction.d.ts +20 -0
- package/build/credentials/manager/SetUpBuildCredentialsCommandAction.js +36 -0
- package/build/credentials/manager/SetUpIosBuildCredentials.d.ts +7 -0
- package/build/credentials/manager/SetUpIosBuildCredentials.js +59 -0
- package/build/credentials/utils/promptForCredentials.d.ts +17 -0
- package/build/credentials/utils/promptForCredentials.js +107 -0
- package/build/devices/actions/create/action.d.ts +19 -0
- package/build/devices/actions/create/action.js +81 -0
- package/build/devices/actions/create/currentMachineMethod.d.ts +3 -0
- package/build/devices/actions/create/currentMachineMethod.js +98 -0
- package/build/devices/actions/create/developerPortalMethod.d.ts +6 -0
- package/build/devices/actions/create/developerPortalMethod.js +89 -0
- package/build/devices/actions/create/inputMethod.d.ts +3 -0
- package/build/devices/actions/create/inputMethod.js +62 -0
- package/build/devices/actions/create/registrationUrlMethod.d.ts +3 -0
- package/build/devices/actions/create/registrationUrlMethod.js +27 -0
- package/build/devices/actions/create/utils.d.ts +10 -0
- package/build/devices/actions/create/utils.js +72 -0
- package/build/devices/context.d.ts +15 -0
- package/build/devices/context.js +11 -0
- package/build/devices/manager.d.ts +19 -0
- package/build/devices/manager.js +82 -0
- package/build/devices/queries.d.ts +22 -0
- package/build/devices/queries.js +145 -0
- package/build/devices/udids.d.ts +2 -0
- package/build/devices/udids.js +27 -0
- package/build/devices/utils/errors.d.ts +6 -0
- package/build/devices/utils/errors.js +15 -0
- package/build/devices/utils/formatDevice.d.ts +7 -0
- package/build/devices/utils/formatDevice.js +49 -0
- package/build/eas-update/utils.d.ts +18 -0
- package/build/eas-update/utils.js +6 -0
- package/build/easMultiselect.d.ts +24 -0
- package/build/easMultiselect.js +50 -0
- package/build/env.d.ts +24 -0
- package/build/env.js +25 -0
- package/build/fetch.d.ts +9 -0
- package/build/fetch.js +36 -0
- package/build/fingerprint/cli.d.ts +29 -0
- package/build/fingerprint/cli.js +126 -0
- package/build/fingerprint/diff.d.ts +33 -0
- package/build/fingerprint/diff.js +122 -0
- package/build/fingerprint/types.d.ts +96 -0
- package/build/fingerprint/types.js +5 -0
- package/build/fingerprint/utils.d.ts +11 -0
- package/build/fingerprint/utils.js +92 -0
- package/build/graphql/client.d.ts +3 -0
- package/build/graphql/client.js +27 -0
- package/build/graphql/generated.d.ts +19152 -0
- package/build/graphql/generated.js +1079 -0
- package/build/graphql/mutations/AppMutation.d.ts +7 -0
- package/build/graphql/mutations/AppMutation.js +27 -0
- package/build/graphql/mutations/AppVersionMutation.d.ts +12 -0
- package/build/graphql/mutations/AppVersionMutation.js +27 -0
- package/build/graphql/mutations/BuildMutation.d.ts +28 -0
- package/build/graphql/mutations/BuildMutation.js +107 -0
- package/build/graphql/mutations/EnvironmentSecretMutation.d.ts +17 -0
- package/build/graphql/mutations/EnvironmentSecretMutation.js +65 -0
- package/build/graphql/mutations/EnvironmentVariableMutation.d.ts +11 -0
- package/build/graphql/mutations/EnvironmentVariableMutation.js +98 -0
- package/build/graphql/mutations/FingerprintMutation.d.ts +8 -0
- package/build/graphql/mutations/FingerprintMutation.js +29 -0
- package/build/graphql/mutations/KeystoreGenerationUrlMutation.d.ts +4 -0
- package/build/graphql/mutations/KeystoreGenerationUrlMutation.js +23 -0
- package/build/graphql/mutations/LocalBuildMutation.d.ts +5 -0
- package/build/graphql/mutations/LocalBuildMutation.js +38 -0
- package/build/graphql/mutations/PublishMutation.d.ts +8 -0
- package/build/graphql/mutations/PublishMutation.js +85 -0
- package/build/graphql/mutations/SubmissionMutation.d.ts +6 -0
- package/build/graphql/mutations/SubmissionMutation.js +71 -0
- package/build/graphql/mutations/UploadSessionMutation.d.ts +14 -0
- package/build/graphql/mutations/UploadSessionMutation.js +41 -0
- package/build/graphql/mutations/UserPreferencesMutation.d.ts +10 -0
- package/build/graphql/mutations/UserPreferencesMutation.js +41 -0
- package/build/graphql/mutations/WebhookMutation.d.ts +7 -0
- package/build/graphql/mutations/WebhookMutation.js +55 -0
- package/build/graphql/mutations/WorkflowRevisionMutation.d.ts +21 -0
- package/build/graphql/mutations/WorkflowRevisionMutation.js +59 -0
- package/build/graphql/mutations/WorkflowRunMutation.d.ts +27 -0
- package/build/graphql/mutations/WorkflowRunMutation.js +98 -0
- package/build/graphql/queries/AccountQuery.d.ts +15 -0
- package/build/graphql/queries/AccountQuery.js +197 -0
- package/build/graphql/queries/AppQuery.d.ts +8 -0
- package/build/graphql/queries/AppQuery.js +106 -0
- package/build/graphql/queries/AppStoreConnectApiKeyQuery.d.ts +8 -0
- package/build/graphql/queries/AppStoreConnectApiKeyQuery.js +32 -0
- package/build/graphql/queries/AppVersionQuery.d.ts +5 -0
- package/build/graphql/queries/AppVersionQuery.js +32 -0
- package/build/graphql/queries/AssetQuery.d.ts +5 -0
- package/build/graphql/queries/AssetQuery.js +27 -0
- package/build/graphql/queries/BackgroundJobReceiptQuery.d.ts +5 -0
- package/build/graphql/queries/BackgroundJobReceiptQuery.js +28 -0
- package/build/graphql/queries/BranchQuery.d.ts +23 -0
- package/build/graphql/queries/BranchQuery.js +190 -0
- package/build/graphql/queries/BuildQuery.d.ts +14 -0
- package/build/graphql/queries/BuildQuery.js +95 -0
- package/build/graphql/queries/ChannelQuery.d.ts +14 -0
- package/build/graphql/queries/ChannelQuery.js +156 -0
- package/build/graphql/queries/EnvironmentSecretsQuery.d.ts +16 -0
- package/build/graphql/queries/EnvironmentSecretsQuery.js +51 -0
- package/build/graphql/queries/EnvironmentVariablesQuery.d.ts +36 -0
- package/build/graphql/queries/EnvironmentVariablesQuery.js +144 -0
- package/build/graphql/queries/FingerprintQuery.d.ts +16 -0
- package/build/graphql/queries/FingerprintQuery.js +61 -0
- package/build/graphql/queries/GoogleServiceAccountKeyQuery.d.ts +6 -0
- package/build/graphql/queries/GoogleServiceAccountKeyQuery.js +25 -0
- package/build/graphql/queries/PublishQuery.d.ts +6 -0
- package/build/graphql/queries/PublishQuery.js +45 -0
- package/build/graphql/queries/RuntimeQuery.d.ts +6 -0
- package/build/graphql/queries/RuntimeQuery.js +70 -0
- package/build/graphql/queries/StatuspageServiceQuery.d.ts +5 -0
- package/build/graphql/queries/StatuspageServiceQuery.js +28 -0
- package/build/graphql/queries/SubmissionQuery.d.ts +15 -0
- package/build/graphql/queries/SubmissionQuery.js +58 -0
- package/build/graphql/queries/UpdateQuery.d.ts +8 -0
- package/build/graphql/queries/UpdateQuery.js +115 -0
- package/build/graphql/queries/UserQuery.d.ts +5 -0
- package/build/graphql/queries/UserQuery.js +58 -0
- package/build/graphql/queries/WebhookQuery.d.ts +6 -0
- package/build/graphql/queries/WebhookQuery.js +49 -0
- package/build/graphql/queries/WorkflowJobQuery.d.ts +7 -0
- package/build/graphql/queries/WorkflowJobQuery.js +29 -0
- package/build/graphql/queries/WorkflowRunQuery.d.ts +11 -0
- package/build/graphql/queries/WorkflowRunQuery.js +100 -0
- package/build/graphql/types/Account.d.ts +12 -0
- package/build/graphql/types/Account.js +162 -0
- package/build/graphql/types/App.d.ts +1 -0
- package/build/graphql/types/App.js +27 -0
- package/build/graphql/types/AppPlatform.d.ts +4 -0
- package/build/graphql/types/AppPlatform.js +25 -0
- package/build/graphql/types/BackgroundJobReceipt.d.ts +1 -0
- package/build/graphql/types/BackgroundJobReceipt.js +20 -0
- package/build/graphql/types/Build.d.ts +3 -0
- package/build/graphql/types/Build.js +99 -0
- package/build/graphql/types/EnvironmentSecret.d.ts +8 -0
- package/build/graphql/types/EnvironmentSecret.js +27 -0
- package/build/graphql/types/EnvironmentVariable.d.ts +1 -0
- package/build/graphql/types/EnvironmentVariable.js +18 -0
- package/build/graphql/types/EnvironmentVariableWithSecret.d.ts +1 -0
- package/build/graphql/types/EnvironmentVariableWithSecret.js +18 -0
- package/build/graphql/types/Fingerprint.d.ts +1 -0
- package/build/graphql/types/Fingerprint.js +30 -0
- package/build/graphql/types/Runtime.d.ts +1 -0
- package/build/graphql/types/Runtime.js +11 -0
- package/build/graphql/types/StatuspageService.d.ts +1 -0
- package/build/graphql/types/StatuspageService.js +19 -0
- package/build/graphql/types/Submission.d.ts +1 -0
- package/build/graphql/types/Submission.js +36 -0
- package/build/graphql/types/Update.d.ts +1 -0
- package/build/graphql/types/Update.js +60 -0
- package/build/graphql/types/UpdateBranch.d.ts +1 -0
- package/build/graphql/types/UpdateBranch.js +20 -0
- package/build/graphql/types/UpdateBranchBasicInfo.d.ts +1 -0
- package/build/graphql/types/UpdateBranchBasicInfo.js +11 -0
- package/build/graphql/types/UpdateChannelBasicInfo.d.ts +1 -0
- package/build/graphql/types/UpdateChannelBasicInfo.js +12 -0
- package/build/graphql/types/Webhook.d.ts +1 -0
- package/build/graphql/types/Webhook.js +14 -0
- package/build/graphql/types/Workflow.d.ts +1 -0
- package/build/graphql/types/Workflow.js +25 -0
- package/build/graphql/types/WorkflowJob.d.ts +1 -0
- package/build/graphql/types/WorkflowJob.js +46 -0
- package/build/graphql/types/WorkflowRun.d.ts +1 -0
- package/build/graphql/types/WorkflowRun.js +38 -0
- package/build/graphql/types/credentials/AndroidAppBuildCredentials.d.ts +1 -0
- package/build/graphql/types/credentials/AndroidAppBuildCredentials.js +20 -0
- package/build/graphql/types/credentials/AndroidAppCredentials.d.ts +1 -0
- package/build/graphql/types/credentials/AndroidAppCredentials.js +40 -0
- package/build/graphql/types/credentials/AndroidFcm.d.ts +1 -0
- package/build/graphql/types/credentials/AndroidFcm.js +26 -0
- package/build/graphql/types/credentials/AndroidKeystore.d.ts +1 -0
- package/build/graphql/types/credentials/AndroidKeystore.js +20 -0
- package/build/graphql/types/credentials/AppStoreConnectApiKey.d.ts +1 -0
- package/build/graphql/types/credentials/AppStoreConnectApiKey.js +23 -0
- package/build/graphql/types/credentials/AppleAppIdentifier.d.ts +1 -0
- package/build/graphql/types/credentials/AppleAppIdentifier.js +11 -0
- package/build/graphql/types/credentials/AppleDevice.d.ts +3 -0
- package/build/graphql/types/credentials/AppleDevice.js +22 -0
- package/build/graphql/types/credentials/AppleDeviceRegistrationRequest.d.ts +1 -0
- package/build/graphql/types/credentials/AppleDeviceRegistrationRequest.js +10 -0
- package/build/graphql/types/credentials/AppleDistributionCertificate.d.ts +1 -0
- package/build/graphql/types/credentials/AppleDistributionCertificate.js +48 -0
- package/build/graphql/types/credentials/AppleProvisioningProfile.d.ts +2 -0
- package/build/graphql/types/credentials/AppleProvisioningProfile.js +34 -0
- package/build/graphql/types/credentials/ApplePushKey.d.ts +1 -0
- package/build/graphql/types/credentials/ApplePushKey.js +34 -0
- package/build/graphql/types/credentials/AppleTeam.d.ts +1 -0
- package/build/graphql/types/credentials/AppleTeam.js +12 -0
- package/build/graphql/types/credentials/GoogleServiceAccountKey.d.ts +1 -0
- package/build/graphql/types/credentials/GoogleServiceAccountKey.js +16 -0
- package/build/graphql/types/credentials/IosAppBuildCredentials.d.ts +1 -0
- package/build/graphql/types/credentials/IosAppBuildCredentials.js +24 -0
- package/build/graphql/types/credentials/IosAppCredentials.d.ts +2 -0
- package/build/graphql/types/credentials/IosAppCredentials.js +53 -0
- package/build/index.d.ts +1 -0
- package/build/index.js +5 -0
- package/build/log.d.ts +46 -0
- package/build/log.js +113 -0
- package/build/metadata/apple/config/reader.d.ts +26 -0
- package/build/metadata/apple/config/reader.js +166 -0
- package/build/metadata/apple/config/writer.d.ts +24 -0
- package/build/metadata/apple/config/writer.js +153 -0
- package/build/metadata/apple/data.d.ts +20 -0
- package/build/metadata/apple/data.js +2 -0
- package/build/metadata/apple/rules/index.d.ts +1 -0
- package/build/metadata/apple/rules/index.js +6 -0
- package/build/metadata/apple/rules/infoKeywordLength.d.ts +6 -0
- package/build/metadata/apple/rules/infoKeywordLength.js +33 -0
- package/build/metadata/apple/rules/infoRestrictedWords.d.ts +6 -0
- package/build/metadata/apple/rules/infoRestrictedWords.js +55 -0
- package/build/metadata/apple/task.d.ts +24 -0
- package/build/metadata/apple/task.js +6 -0
- package/build/metadata/apple/tasks/age-rating.d.ts +12 -0
- package/build/metadata/apple/tasks/age-rating.js +35 -0
- package/build/metadata/apple/tasks/app-info.d.ts +14 -0
- package/build/metadata/apple/tasks/app-info.js +81 -0
- package/build/metadata/apple/tasks/app-review-detail.d.ts +13 -0
- package/build/metadata/apple/tasks/app-review-detail.js +45 -0
- package/build/metadata/apple/tasks/app-version.d.ts +30 -0
- package/build/metadata/apple/tasks/app-version.js +216 -0
- package/build/metadata/apple/tasks/index.d.ts +10 -0
- package/build/metadata/apple/tasks/index.js +18 -0
- package/build/metadata/apple/types.d.ts +43 -0
- package/build/metadata/apple/types.js +2 -0
- package/build/metadata/auth.d.ts +20 -0
- package/build/metadata/auth.js +31 -0
- package/build/metadata/config/issue.d.ts +21 -0
- package/build/metadata/config/issue.js +9 -0
- package/build/metadata/config/resolve.d.ts +27 -0
- package/build/metadata/config/resolve.js +74 -0
- package/build/metadata/config/schema.d.ts +7 -0
- package/build/metadata/config/schema.js +2 -0
- package/build/metadata/config/validate.d.ts +3 -0
- package/build/metadata/config/validate.js +44 -0
- package/build/metadata/download.d.ts +15 -0
- package/build/metadata/download.js +70 -0
- package/build/metadata/errors.d.ts +42 -0
- package/build/metadata/errors.js +92 -0
- package/build/metadata/upload.d.ts +17 -0
- package/build/metadata/upload.js +73 -0
- package/build/metadata/utils/ajv.d.ts +10 -0
- package/build/metadata/utils/ajv.js +29 -0
- package/build/metadata/utils/asc.d.ts +3 -0
- package/build/metadata/utils/asc.js +2 -0
- package/build/metadata/utils/date.d.ts +12 -0
- package/build/metadata/utils/date.js +29 -0
- package/build/metadata/utils/log.d.ts +16 -0
- package/build/metadata/utils/log.js +22 -0
- package/build/metadata/utils/retry.d.ts +8 -0
- package/build/metadata/utils/retry.js +20 -0
- package/build/metadata/utils/telemetry.d.ts +19 -0
- package/build/metadata/utils/telemetry.js +82 -0
- package/build/onboarding/git.d.ts +16 -0
- package/build/onboarding/git.js +88 -0
- package/build/onboarding/installDependencies.d.ts +8 -0
- package/build/onboarding/installDependencies.js +27 -0
- package/build/onboarding/runCommand.d.ts +9 -0
- package/build/onboarding/runCommand.js +68 -0
- package/build/ora.d.ts +9 -0
- package/build/ora.js +101 -0
- package/build/platform.d.ts +17 -0
- package/build/platform.js +90 -0
- package/build/project/android/applicationId.d.ts +20 -0
- package/build/project/android/applicationId.js +152 -0
- package/build/project/android/gradle.d.ts +9 -0
- package/build/project/android/gradle.js +41 -0
- package/build/project/android/gradleUtils.d.ts +42 -0
- package/build/project/android/gradleUtils.js +85 -0
- package/build/project/android/versions.d.ts +3 -0
- package/build/project/android/versions.js +23 -0
- package/build/project/applicationIdentifier.d.ts +16 -0
- package/build/project/applicationIdentifier.js +55 -0
- package/build/project/customBuildConfig.d.ts +13 -0
- package/build/project/customBuildConfig.js +49 -0
- package/build/project/discourageExpoGoForProdAsync.d.ts +4 -0
- package/build/project/discourageExpoGoForProdAsync.js +46 -0
- package/build/project/expoConfig.d.ts +19 -0
- package/build/project/expoConfig.js +108 -0
- package/build/project/expoSdk.d.ts +3 -0
- package/build/project/expoSdk.js +29 -0
- package/build/project/fetchOrCreateProjectIDForWriteToConfigWithConfirmationAsync.d.ts +21 -0
- package/build/project/fetchOrCreateProjectIDForWriteToConfigWithConfirmationAsync.js +86 -0
- package/build/project/ios/bundleIdentifier.d.ts +22 -0
- package/build/project/ios/bundleIdentifier.js +151 -0
- package/build/project/ios/entitlements.d.ts +9 -0
- package/build/project/ios/entitlements.js +61 -0
- package/build/project/ios/exemptEncryption.d.ts +7 -0
- package/build/project/ios/exemptEncryption.js +81 -0
- package/build/project/ios/scheme.d.ts +18 -0
- package/build/project/ios/scheme.js +69 -0
- package/build/project/ios/target.d.ts +38 -0
- package/build/project/ios/target.js +230 -0
- package/build/project/ios/versions.d.ts +3 -0
- package/build/project/ios/versions.js +17 -0
- package/build/project/maybeUploadAssetMapAsync.d.ts +3 -0
- package/build/project/maybeUploadAssetMapAsync.js +39 -0
- package/build/project/maybeUploadFingerprintAsync.d.ts +15 -0
- package/build/project/maybeUploadFingerprintAsync.js +51 -0
- package/build/project/metroConfig.d.ts +3 -0
- package/build/project/metroConfig.js +71 -0
- package/build/project/projectUtils.d.ts +26 -0
- package/build/project/projectUtils.js +134 -0
- package/build/project/publish.d.ts +233 -0
- package/build/project/publish.js +681 -0
- package/build/project/remoteVersionSource.d.ts +17 -0
- package/build/project/remoteVersionSource.js +153 -0
- package/build/project/resolveRuntimeVersionAsync.d.ts +31 -0
- package/build/project/resolveRuntimeVersionAsync.js +51 -0
- package/build/project/uploadAccountScopedFileAsync.d.ts +14 -0
- package/build/project/uploadAccountScopedFileAsync.js +34 -0
- package/build/project/uploadAccountScopedProjectSourceAsync.d.ts +13 -0
- package/build/project/uploadAccountScopedProjectSourceAsync.js +43 -0
- package/build/project/workflow.d.ts +5 -0
- package/build/project/workflow.js +50 -0
- package/build/prompts.d.ts +22 -0
- package/build/prompts.js +76 -0
- package/build/rollout/actions/CreateRollout.d.ts +24 -0
- package/build/rollout/actions/CreateRollout.js +239 -0
- package/build/rollout/actions/EditRollout.d.ts +16 -0
- package/build/rollout/actions/EditRollout.js +83 -0
- package/build/rollout/actions/EndRollout.d.ts +25 -0
- package/build/rollout/actions/EndRollout.js +165 -0
- package/build/rollout/actions/ManageRollout.d.ts +24 -0
- package/build/rollout/actions/ManageRollout.js +90 -0
- package/build/rollout/actions/NonInteractiveRollout.d.ts +23 -0
- package/build/rollout/actions/NonInteractiveRollout.js +115 -0
- package/build/rollout/actions/RolloutMainMenu.d.ts +27 -0
- package/build/rollout/actions/RolloutMainMenu.js +122 -0
- package/build/rollout/actions/SelectRollout.d.ts +8 -0
- package/build/rollout/actions/SelectRollout.js +33 -0
- package/build/rollout/actions/SelectRuntime.d.ts +19 -0
- package/build/rollout/actions/SelectRuntime.js +160 -0
- package/build/rollout/branch-mapping.d.ts +128 -0
- package/build/rollout/branch-mapping.js +271 -0
- package/build/rollout/utils.d.ts +10 -0
- package/build/rollout/utils.js +91 -0
- package/build/run/android/aapt.d.ts +5 -0
- package/build/run/android/aapt.js +50 -0
- package/build/run/android/adb.d.ts +23 -0
- package/build/run/android/adb.js +116 -0
- package/build/run/android/emulator.d.ts +7 -0
- package/build/run/android/emulator.js +109 -0
- package/build/run/android/run.d.ts +1 -0
- package/build/run/android/run.js +15 -0
- package/build/run/android/sdk.d.ts +2 -0
- package/build/run/android/sdk.js +29 -0
- package/build/run/android/systemRequirements.d.ts +1 -0
- package/build/run/android/systemRequirements.js +23 -0
- package/build/run/ios/run.d.ts +1 -0
- package/build/run/ios/run.js +30 -0
- package/build/run/ios/simctl.d.ts +2 -0
- package/build/run/ios/simctl.js +7 -0
- package/build/run/ios/simulator.d.ts +21 -0
- package/build/run/ios/simulator.js +160 -0
- package/build/run/ios/systemRequirements.d.ts +1 -0
- package/build/run/ios/systemRequirements.js +81 -0
- package/build/run/ios/xcode.d.ts +19 -0
- package/build/run/ios/xcode.js +63 -0
- package/build/run/ios/xcrun.d.ts +4 -0
- package/build/run/ios/xcrun.js +66 -0
- package/build/run/run.d.ts +9 -0
- package/build/run/run.js +21 -0
- package/build/run/utils.d.ts +2 -0
- package/build/run/utils.js +17 -0
- package/build/submit/ArchiveSource.d.ts +58 -0
- package/build/submit/ArchiveSource.js +412 -0
- package/build/submit/BaseSubmitter.d.ts +36 -0
- package/build/submit/BaseSubmitter.js +88 -0
- package/build/submit/android/AndroidSubmitCommand.d.ts +14 -0
- package/build/submit/android/AndroidSubmitCommand.js +125 -0
- package/build/submit/android/AndroidSubmitter.d.ts +23 -0
- package/build/submit/android/AndroidSubmitter.js +110 -0
- package/build/submit/android/ServiceAccountSource.d.ts +41 -0
- package/build/submit/android/ServiceAccountSource.js +120 -0
- package/build/submit/commons.d.ts +5 -0
- package/build/submit/commons.js +64 -0
- package/build/submit/context.d.ts +56 -0
- package/build/submit/context.js +53 -0
- package/build/submit/ios/AppProduce.d.ts +7 -0
- package/build/submit/ios/AppProduce.js +77 -0
- package/build/submit/ios/AppSpecificPasswordSource.d.ts +20 -0
- package/build/submit/ios/AppSpecificPasswordSource.js +57 -0
- package/build/submit/ios/AscApiKeySource.d.ts +39 -0
- package/build/submit/ios/AscApiKeySource.js +115 -0
- package/build/submit/ios/IosSubmitCommand.d.ts +14 -0
- package/build/submit/ios/IosSubmitCommand.js +156 -0
- package/build/submit/ios/IosSubmitter.d.ts +31 -0
- package/build/submit/ios/IosSubmitter.js +141 -0
- package/build/submit/ios/utils/language.d.ts +9 -0
- package/build/submit/ios/utils/language.js +244 -0
- package/build/submit/submit.d.ts +9 -0
- package/build/submit/submit.js +81 -0
- package/build/submit/utils/builds.d.ts +5 -0
- package/build/submit/utils/builds.js +29 -0
- package/build/submit/utils/errors.d.ts +5 -0
- package/build/submit/utils/errors.js +23 -0
- package/build/submit/utils/files.d.ts +3 -0
- package/build/submit/utils/files.js +27 -0
- package/build/submit/utils/logs.d.ts +5 -0
- package/build/submit/utils/logs.js +68 -0
- package/build/submit/utils/summary.d.ts +8 -0
- package/build/submit/utils/summary.js +60 -0
- package/build/submit/utils/urls.d.ts +3 -0
- package/build/submit/utils/urls.js +24 -0
- package/build/submit/utils/wait.d.ts +3 -0
- package/build/submit/utils/wait.js +113 -0
- package/build/update/android/UpdatesModule.d.ts +12 -0
- package/build/update/android/UpdatesModule.js +53 -0
- package/build/update/configure.d.ts +36 -0
- package/build/update/configure.js +292 -0
- package/build/update/delete.d.ts +5 -0
- package/build/update/delete.js +23 -0
- package/build/update/getBranchFromChannelNameAndCreateAndLinkIfNotExistsAsync.d.ts +5 -0
- package/build/update/getBranchFromChannelNameAndCreateAndLinkIfNotExistsAsync.js +45 -0
- package/build/update/ios/UpdatesModule.d.ts +11 -0
- package/build/update/ios/UpdatesModule.js +41 -0
- package/build/update/queries.d.ts +33 -0
- package/build/update/queries.js +232 -0
- package/build/update/republish.d.ts +56 -0
- package/build/update/republish.js +416 -0
- package/build/update/roll-back-to-embedded.d.ts +18 -0
- package/build/update/roll-back-to-embedded.js +118 -0
- package/build/update/utils.d.ts +64 -0
- package/build/update/utils.js +267 -0
- package/build/uploads.d.ts +16 -0
- package/build/uploads.js +100 -0
- package/build/user/SessionManager.d.ts +76 -0
- package/build/user/SessionManager.js +268 -0
- package/build/user/User.d.ts +9 -0
- package/build/user/User.js +34 -0
- package/build/user/UserSettings.d.ts +10 -0
- package/build/user/UserSettings.js +13 -0
- package/build/user/actions.d.ts +3 -0
- package/build/user/actions.js +9 -0
- package/build/user/expoBrowserAuthFlowLauncher.d.ts +3 -0
- package/build/user/expoBrowserAuthFlowLauncher.js +72 -0
- package/build/user/expoSsoLauncher.d.ts +3 -0
- package/build/user/expoSsoLauncher.js +98 -0
- package/build/user/fetchSessionSecretAndSsoUser.d.ts +5 -0
- package/build/user/fetchSessionSecretAndSsoUser.js +18 -0
- package/build/user/fetchSessionSecretAndUser.d.ts +9 -0
- package/build/user/fetchSessionSecretAndUser.js +22 -0
- package/build/user/fetchSessionSecretAndUserFromBrowserAuthFlow.d.ts +7 -0
- package/build/user/fetchSessionSecretAndUserFromBrowserAuthFlow.js +14 -0
- package/build/user/fetchUser.d.ts +6 -0
- package/build/user/fetchUser.js +28 -0
- package/build/utils/buildDistribution.d.ts +3 -0
- package/build/utils/buildDistribution.js +20 -0
- package/build/utils/code-signing.d.ts +25 -0
- package/build/utils/code-signing.js +130 -0
- package/build/utils/date.d.ts +4 -0
- package/build/utils/date.js +36 -0
- package/build/utils/download.d.ts +3 -0
- package/build/utils/download.js +155 -0
- package/build/utils/easCli.d.ts +1 -0
- package/build/utils/easCli.js +5 -0
- package/build/utils/expoCli.d.ts +17 -0
- package/build/utils/expoCli.js +105 -0
- package/build/utils/expoUpdatesCli.d.ts +11 -0
- package/build/utils/expoUpdatesCli.js +49 -0
- package/build/utils/expodash/areSetsEqual.d.ts +1 -0
- package/build/utils/expodash/areSetsEqual.js +6 -0
- package/build/utils/expodash/capitalize.d.ts +1 -0
- package/build/utils/expodash/capitalize.js +6 -0
- package/build/utils/expodash/chunk.d.ts +1 -0
- package/build/utils/expodash/chunk.js +16 -0
- package/build/utils/expodash/differenceBy.d.ts +1 -0
- package/build/utils/expodash/differenceBy.js +7 -0
- package/build/utils/expodash/filter.d.ts +2 -0
- package/build/utils/expodash/filter.js +7 -0
- package/build/utils/expodash/groupBy.d.ts +1 -0
- package/build/utils/expodash/groupBy.js +13 -0
- package/build/utils/expodash/intersection.d.ts +1 -0
- package/build/utils/expodash/intersection.js +8 -0
- package/build/utils/expodash/mapMapAsync.d.ts +1 -0
- package/build/utils/expodash/mapMapAsync.js +12 -0
- package/build/utils/expodash/memoize.d.ts +2 -0
- package/build/utils/expodash/memoize.js +16 -0
- package/build/utils/expodash/pick.d.ts +1 -0
- package/build/utils/expodash/pick.js +11 -0
- package/build/utils/expodash/sortBy.d.ts +1 -0
- package/build/utils/expodash/sortBy.js +11 -0
- package/build/utils/expodash/uniq.d.ts +1 -0
- package/build/utils/expodash/uniq.js +7 -0
- package/build/utils/expodash/uniqBy.d.ts +1 -0
- package/build/utils/expodash/uniqBy.js +14 -0
- package/build/utils/expodash/zipObject.d.ts +1 -0
- package/build/utils/expodash/zipObject.js +13 -0
- package/build/utils/files.d.ts +2 -0
- package/build/utils/files.js +52 -0
- package/build/utils/filterAsync.d.ts +7 -0
- package/build/utils/filterAsync.js +11 -0
- package/build/utils/fingerprint.d.ts +97 -0
- package/build/utils/fingerprint.js +5 -0
- package/build/utils/fingerprintCli.d.ts +28 -0
- package/build/utils/fingerprintCli.js +110 -0
- package/build/utils/fingerprintDiff.d.ts +33 -0
- package/build/utils/fingerprintDiff.js +122 -0
- package/build/utils/formatFields.d.ts +9 -0
- package/build/utils/formatFields.js +19 -0
- package/build/utils/image.d.ts +6 -0
- package/build/utils/image.js +107 -0
- package/build/utils/json.d.ts +2 -0
- package/build/utils/json.js +42 -0
- package/build/utils/paths.d.ts +7 -0
- package/build/utils/paths.js +43 -0
- package/build/utils/plist.d.ts +4 -0
- package/build/utils/plist.js +51 -0
- package/build/utils/pollForBackgroundJobReceiptAsync.d.ts +29 -0
- package/build/utils/pollForBackgroundJobReceiptAsync.js +92 -0
- package/build/utils/profiles.d.ts +21 -0
- package/build/utils/profiles.js +89 -0
- package/build/utils/progress.d.ts +15 -0
- package/build/utils/progress.js +64 -0
- package/build/utils/promise.d.ts +7 -0
- package/build/utils/promise.js +12 -0
- package/build/utils/prompts.d.ts +32 -0
- package/build/utils/prompts.js +219 -0
- package/build/utils/queries.d.ts +31 -0
- package/build/utils/queries.js +68 -0
- package/build/utils/relay.d.ts +104 -0
- package/build/utils/relay.js +255 -0
- package/build/utils/statuspageService.d.ts +3 -0
- package/build/utils/statuspageService.js +44 -0
- package/build/utils/timer.d.ts +12 -0
- package/build/utils/timer.js +54 -0
- package/build/utils/usage/checkForOverages.d.ts +12 -0
- package/build/utils/usage/checkForOverages.js +59 -0
- package/build/utils/variableUtils.d.ts +6 -0
- package/build/utils/variableUtils.js +61 -0
- package/build/utils/workflowFile.d.ts +14 -0
- package/build/utils/workflowFile.js +58 -0
- package/build/vcs/clients/git.d.ts +37 -0
- package/build/vcs/clients/git.js +456 -0
- package/build/vcs/clients/gitNoCommit.d.ts +8 -0
- package/build/vcs/clients/gitNoCommit.js +42 -0
- package/build/vcs/clients/noVcs.d.ts +11 -0
- package/build/vcs/clients/noVcs.js +52 -0
- package/build/vcs/git.d.ts +13 -0
- package/build/vcs/git.js +59 -0
- package/build/vcs/index.d.ts +2 -0
- package/build/vcs/index.js +25 -0
- package/build/vcs/local.d.ts +25 -0
- package/build/vcs/local.js +117 -0
- package/build/vcs/vcs.d.ts +25 -0
- package/build/vcs/vcs.js +61 -0
- package/build/webhooks/formatWebhook.d.ts +2 -0
- package/build/webhooks/formatWebhook.js +14 -0
- package/build/webhooks/input.d.ts +9 -0
- package/build/webhooks/input.js +83 -0
- package/build/worker/assets.d.ts +54 -0
- package/build/worker/assets.js +193 -0
- package/build/worker/deployment.d.ts +61 -0
- package/build/worker/deployment.js +184 -0
- package/build/worker/fragments/WorkerDeployment.d.ts +1 -0
- package/build/worker/fragments/WorkerDeployment.js +14 -0
- package/build/worker/fragments/WorkerDeploymentAlias.d.ts +1 -0
- package/build/worker/fragments/WorkerDeploymentAlias.js +12 -0
- package/build/worker/mutations.d.ts +28 -0
- package/build/worker/mutations.js +105 -0
- package/build/worker/queries.d.ts +14 -0
- package/build/worker/queries.js +103 -0
- package/build/worker/upload.d.ts +33 -0
- package/build/worker/upload.js +213 -0
- package/build/worker/utils/logs.d.ts +36 -0
- package/build/worker/utils/logs.js +54 -0
- package/build/worker/utils/multipart.d.ts +11 -0
- package/build/worker/utils/multipart.js +98 -0
- package/package.json +246 -0
- package/schema/metadata-0.json +828 -0
package/README.md
ADDED
|
@@ -0,0 +1,2520 @@
|
|
|
1
|
+
# eas-cli
|
|
2
|
+
|
|
3
|
+
EAS command line tool
|
|
4
|
+
|
|
5
|
+
[](https://oclif.io)
|
|
6
|
+
[](https://npmjs.org/package/eas-cli)
|
|
7
|
+
[](https://npmjs.org/package/eas-cli)
|
|
8
|
+
[](https://github.com/expo/eas-cli/blob/main/package.json)
|
|
9
|
+
|
|
10
|
+
- [Installation](#installation)
|
|
11
|
+
- [Usage](#usage)
|
|
12
|
+
- [Commands](#commands)
|
|
13
|
+
|
|
14
|
+
# Installation
|
|
15
|
+
|
|
16
|
+
```sh
|
|
17
|
+
npm install -g eas-cli
|
|
18
|
+
# or
|
|
19
|
+
yarn global add eas-cli
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Enforcing eas-cli version for your project
|
|
23
|
+
|
|
24
|
+
If you want to enforce the `eas-cli` version for your project, use the `"cli.version"` field in **eas.json**. Installing `eas-cli` to your project dependencies is strongly discouraged because it may cause dependency conflicts that are difficult to debug.
|
|
25
|
+
|
|
26
|
+
An example of **eas.json** that enforces `eas-cli` in version `1.0.0` or newer:
|
|
27
|
+
|
|
28
|
+
```json
|
|
29
|
+
{
|
|
30
|
+
"cli": {
|
|
31
|
+
"version": ">=1.0.0"
|
|
32
|
+
},
|
|
33
|
+
"build": {
|
|
34
|
+
// build profiles
|
|
35
|
+
},
|
|
36
|
+
"submit": {
|
|
37
|
+
// submit profiles
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Learn more: https://docs.expo.dev/build/eas-json/
|
|
43
|
+
|
|
44
|
+
# Usage
|
|
45
|
+
|
|
46
|
+
```sh
|
|
47
|
+
eas COMMAND
|
|
48
|
+
# runs the command
|
|
49
|
+
eas (-v|--version|version)
|
|
50
|
+
# prints the version
|
|
51
|
+
eas --help COMMAND
|
|
52
|
+
# outputs help for specific command
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
# Commands
|
|
56
|
+
|
|
57
|
+
<!-- commands -->
|
|
58
|
+
* [`eas account:login`](#eas-accountlogin)
|
|
59
|
+
* [`eas account:logout`](#eas-accountlogout)
|
|
60
|
+
* [`eas account:usage [ACCOUNT_NAME]`](#eas-accountusage-account_name)
|
|
61
|
+
* [`eas account:view`](#eas-accountview)
|
|
62
|
+
* [`eas analytics [STATUS]`](#eas-analytics-status)
|
|
63
|
+
* [`eas autocomplete [SHELL]`](#eas-autocomplete-shell)
|
|
64
|
+
* [`eas branch:create [NAME]`](#eas-branchcreate-name)
|
|
65
|
+
* [`eas branch:delete [NAME]`](#eas-branchdelete-name)
|
|
66
|
+
* [`eas branch:list`](#eas-branchlist)
|
|
67
|
+
* [`eas branch:rename`](#eas-branchrename)
|
|
68
|
+
* [`eas branch:view [NAME]`](#eas-branchview-name)
|
|
69
|
+
* [`eas build`](#eas-build)
|
|
70
|
+
* [`eas build:cancel [BUILD_ID]`](#eas-buildcancel-build_id)
|
|
71
|
+
* [`eas build:configure`](#eas-buildconfigure)
|
|
72
|
+
* [`eas build:delete [BUILD_ID]`](#eas-builddelete-build_id)
|
|
73
|
+
* [`eas build:dev`](#eas-builddev)
|
|
74
|
+
* [`eas build:download`](#eas-builddownload)
|
|
75
|
+
* [`eas build:inspect`](#eas-buildinspect)
|
|
76
|
+
* [`eas build:list`](#eas-buildlist)
|
|
77
|
+
* [`eas build:resign`](#eas-buildresign)
|
|
78
|
+
* [`eas build:run`](#eas-buildrun)
|
|
79
|
+
* [`eas build:submit`](#eas-buildsubmit)
|
|
80
|
+
* [`eas build:version:get`](#eas-buildversionget)
|
|
81
|
+
* [`eas build:version:set`](#eas-buildversionset)
|
|
82
|
+
* [`eas build:version:sync`](#eas-buildversionsync)
|
|
83
|
+
* [`eas build:view [BUILD_ID]`](#eas-buildview-build_id)
|
|
84
|
+
* [`eas channel:create [NAME]`](#eas-channelcreate-name)
|
|
85
|
+
* [`eas channel:delete [NAME]`](#eas-channeldelete-name)
|
|
86
|
+
* [`eas channel:edit [NAME]`](#eas-channeledit-name)
|
|
87
|
+
* [`eas channel:list`](#eas-channellist)
|
|
88
|
+
* [`eas channel:pause [NAME]`](#eas-channelpause-name)
|
|
89
|
+
* [`eas channel:resume [NAME]`](#eas-channelresume-name)
|
|
90
|
+
* [`eas channel:rollout [CHANNEL]`](#eas-channelrollout-channel)
|
|
91
|
+
* [`eas channel:view [NAME]`](#eas-channelview-name)
|
|
92
|
+
* [`eas config`](#eas-config)
|
|
93
|
+
* [`eas credentials`](#eas-credentials)
|
|
94
|
+
* [`eas credentials:configure-build`](#eas-credentialsconfigure-build)
|
|
95
|
+
* [`eas deploy [options]`](#eas-deploy-options)
|
|
96
|
+
* [`eas deploy:alias`](#eas-deployalias)
|
|
97
|
+
* [`eas deploy:alias:delete [ALIAS_NAME]`](#eas-deployaliasdelete-alias_name)
|
|
98
|
+
* [`eas deploy:delete [DEPLOYMENT_ID]`](#eas-deploydelete-deployment_id)
|
|
99
|
+
* [`eas deploy:promote`](#eas-deploypromote)
|
|
100
|
+
* [`eas device:create`](#eas-devicecreate)
|
|
101
|
+
* [`eas device:delete`](#eas-devicedelete)
|
|
102
|
+
* [`eas device:list`](#eas-devicelist)
|
|
103
|
+
* [`eas device:rename`](#eas-devicerename)
|
|
104
|
+
* [`eas device:view [UDID]`](#eas-deviceview-udid)
|
|
105
|
+
* [`eas diagnostics`](#eas-diagnostics)
|
|
106
|
+
* [`eas env:create [ENVIRONMENT]`](#eas-envcreate-environment)
|
|
107
|
+
* [`eas env:delete [ENVIRONMENT]`](#eas-envdelete-environment)
|
|
108
|
+
* [`eas env:exec ENVIRONMENT BASH_COMMAND`](#eas-envexec-environment-bash_command)
|
|
109
|
+
* [`eas env:get [ENVIRONMENT]`](#eas-envget-environment)
|
|
110
|
+
* [`eas env:list [ENVIRONMENT]`](#eas-envlist-environment)
|
|
111
|
+
* [`eas env:pull [ENVIRONMENT]`](#eas-envpull-environment)
|
|
112
|
+
* [`eas env:push [ENVIRONMENT]`](#eas-envpush-environment)
|
|
113
|
+
* [`eas env:update [ENVIRONMENT]`](#eas-envupdate-environment)
|
|
114
|
+
* [`eas fingerprint:compare [HASH1] [HASH2]`](#eas-fingerprintcompare-hash1-hash2)
|
|
115
|
+
* [`eas fingerprint:generate`](#eas-fingerprintgenerate)
|
|
116
|
+
* [`eas help [COMMAND]`](#eas-help-command)
|
|
117
|
+
* [`eas init`](#eas-init)
|
|
118
|
+
* [`eas init:onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-initonboarding-target_project_directory)
|
|
119
|
+
* [`eas login`](#eas-login)
|
|
120
|
+
* [`eas logout`](#eas-logout)
|
|
121
|
+
* [`eas metadata:lint`](#eas-metadatalint)
|
|
122
|
+
* [`eas metadata:pull`](#eas-metadatapull)
|
|
123
|
+
* [`eas metadata:push`](#eas-metadatapush)
|
|
124
|
+
* [`eas new [PATH]`](#eas-new-path)
|
|
125
|
+
* [`eas onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-onboarding-target_project_directory)
|
|
126
|
+
* [`eas open`](#eas-open)
|
|
127
|
+
* [`eas project:info`](#eas-projectinfo)
|
|
128
|
+
* [`eas project:init`](#eas-projectinit)
|
|
129
|
+
* [`eas project:new [PATH]`](#eas-projectnew-path)
|
|
130
|
+
* [`eas project:onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-projectonboarding-target_project_directory)
|
|
131
|
+
* [`eas submit`](#eas-submit)
|
|
132
|
+
* [`eas update`](#eas-update)
|
|
133
|
+
* [`eas update:configure`](#eas-updateconfigure)
|
|
134
|
+
* [`eas update:delete GROUPID`](#eas-updatedelete-groupid)
|
|
135
|
+
* [`eas update:edit [GROUPID]`](#eas-updateedit-groupid)
|
|
136
|
+
* [`eas update:list`](#eas-updatelist)
|
|
137
|
+
* [`eas update:republish`](#eas-updaterepublish)
|
|
138
|
+
* [`eas update:revert-update-rollout`](#eas-updaterevert-update-rollout)
|
|
139
|
+
* [`eas update:roll-back-to-embedded`](#eas-updateroll-back-to-embedded)
|
|
140
|
+
* [`eas update:rollback`](#eas-updaterollback)
|
|
141
|
+
* [`eas update:view GROUPID`](#eas-updateview-groupid)
|
|
142
|
+
* [`eas upload`](#eas-upload)
|
|
143
|
+
* [`eas webhook:create`](#eas-webhookcreate)
|
|
144
|
+
* [`eas webhook:delete [ID]`](#eas-webhookdelete-id)
|
|
145
|
+
* [`eas webhook:list`](#eas-webhooklist)
|
|
146
|
+
* [`eas webhook:update`](#eas-webhookupdate)
|
|
147
|
+
* [`eas webhook:view ID`](#eas-webhookview-id)
|
|
148
|
+
* [`eas whoami`](#eas-whoami)
|
|
149
|
+
* [`eas worker:alias`](#eas-workeralias)
|
|
150
|
+
* [`eas worker:alias:delete [ALIAS_NAME]`](#eas-workeraliasdelete-alias_name)
|
|
151
|
+
* [`eas worker:delete [DEPLOYMENT_ID]`](#eas-workerdelete-deployment_id)
|
|
152
|
+
* [`eas deploy [options]`](#eas-deploy-options)
|
|
153
|
+
* [`eas workflow:cancel`](#eas-workflowcancel)
|
|
154
|
+
* [`eas workflow:create [NAME]`](#eas-workflowcreate-name)
|
|
155
|
+
* [`eas workflow:logs [ID]`](#eas-workflowlogs-id)
|
|
156
|
+
* [`eas workflow:run FILE`](#eas-workflowrun-file)
|
|
157
|
+
* [`eas workflow:runs`](#eas-workflowruns)
|
|
158
|
+
* [`eas workflow:status [WORKFLOW_RUN_ID]`](#eas-workflowstatus-workflow_run_id)
|
|
159
|
+
* [`eas workflow:validate PATH`](#eas-workflowvalidate-path)
|
|
160
|
+
* [`eas workflow:view [ID]`](#eas-workflowview-id)
|
|
161
|
+
|
|
162
|
+
## `eas account:login`
|
|
163
|
+
|
|
164
|
+
log in with your Expo account
|
|
165
|
+
|
|
166
|
+
```
|
|
167
|
+
USAGE
|
|
168
|
+
$ eas account:login [-s] [-b]
|
|
169
|
+
|
|
170
|
+
FLAGS
|
|
171
|
+
-b, --browser Login with your browser
|
|
172
|
+
-s, --sso Login with SSO
|
|
173
|
+
|
|
174
|
+
DESCRIPTION
|
|
175
|
+
log in with your Expo account
|
|
176
|
+
|
|
177
|
+
ALIASES
|
|
178
|
+
$ eas login
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
182
|
+
|
|
183
|
+
## `eas account:logout`
|
|
184
|
+
|
|
185
|
+
log out
|
|
186
|
+
|
|
187
|
+
```
|
|
188
|
+
USAGE
|
|
189
|
+
$ eas account:logout
|
|
190
|
+
|
|
191
|
+
DESCRIPTION
|
|
192
|
+
log out
|
|
193
|
+
|
|
194
|
+
ALIASES
|
|
195
|
+
$ eas logout
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
199
|
+
|
|
200
|
+
## `eas account:usage [ACCOUNT_NAME]`
|
|
201
|
+
|
|
202
|
+
view account usage and billing for the current cycle
|
|
203
|
+
|
|
204
|
+
```
|
|
205
|
+
USAGE
|
|
206
|
+
$ eas account:usage [ACCOUNT_NAME] [--json] [--non-interactive]
|
|
207
|
+
|
|
208
|
+
ARGUMENTS
|
|
209
|
+
[ACCOUNT_NAME] Account name to view usage for. If not provided, the account will be selected interactively (or
|
|
210
|
+
defaults to the only account if there is just one)
|
|
211
|
+
|
|
212
|
+
FLAGS
|
|
213
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
214
|
+
--non-interactive Run the command in non-interactive mode.
|
|
215
|
+
|
|
216
|
+
DESCRIPTION
|
|
217
|
+
view account usage and billing for the current cycle
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/account/usage.ts)_
|
|
221
|
+
|
|
222
|
+
## `eas account:view`
|
|
223
|
+
|
|
224
|
+
show the username you are logged in as
|
|
225
|
+
|
|
226
|
+
```
|
|
227
|
+
USAGE
|
|
228
|
+
$ eas account:view
|
|
229
|
+
|
|
230
|
+
DESCRIPTION
|
|
231
|
+
show the username you are logged in as
|
|
232
|
+
|
|
233
|
+
ALIASES
|
|
234
|
+
$ eas whoami
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
238
|
+
|
|
239
|
+
## `eas analytics [STATUS]`
|
|
240
|
+
|
|
241
|
+
display or change analytics settings
|
|
242
|
+
|
|
243
|
+
```
|
|
244
|
+
USAGE
|
|
245
|
+
$ eas analytics [STATUS]
|
|
246
|
+
|
|
247
|
+
DESCRIPTION
|
|
248
|
+
display or change analytics settings
|
|
249
|
+
```
|
|
250
|
+
|
|
251
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
252
|
+
|
|
253
|
+
## `eas autocomplete [SHELL]`
|
|
254
|
+
|
|
255
|
+
Display autocomplete installation instructions.
|
|
256
|
+
|
|
257
|
+
```
|
|
258
|
+
USAGE
|
|
259
|
+
$ eas autocomplete [SHELL] [-r]
|
|
260
|
+
|
|
261
|
+
ARGUMENTS
|
|
262
|
+
[SHELL] (zsh|bash|powershell) Shell type
|
|
263
|
+
|
|
264
|
+
FLAGS
|
|
265
|
+
-r, --refresh-cache Refresh cache (ignores displaying instructions)
|
|
266
|
+
|
|
267
|
+
DESCRIPTION
|
|
268
|
+
Display autocomplete installation instructions.
|
|
269
|
+
|
|
270
|
+
EXAMPLES
|
|
271
|
+
$ eas autocomplete
|
|
272
|
+
|
|
273
|
+
$ eas autocomplete bash
|
|
274
|
+
|
|
275
|
+
$ eas autocomplete zsh
|
|
276
|
+
|
|
277
|
+
$ eas autocomplete powershell
|
|
278
|
+
|
|
279
|
+
$ eas autocomplete --refresh-cache
|
|
280
|
+
```
|
|
281
|
+
|
|
282
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.40/packages/eas-cli/src/commands/autocomplete/index.ts)_
|
|
283
|
+
|
|
284
|
+
## `eas branch:create [NAME]`
|
|
285
|
+
|
|
286
|
+
create a branch
|
|
287
|
+
|
|
288
|
+
```
|
|
289
|
+
USAGE
|
|
290
|
+
$ eas branch:create [NAME] [--json] [--non-interactive]
|
|
291
|
+
|
|
292
|
+
ARGUMENTS
|
|
293
|
+
[NAME] Name of the branch to create
|
|
294
|
+
|
|
295
|
+
FLAGS
|
|
296
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
297
|
+
--non-interactive Run the command in non-interactive mode.
|
|
298
|
+
|
|
299
|
+
DESCRIPTION
|
|
300
|
+
create a branch
|
|
301
|
+
```
|
|
302
|
+
|
|
303
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
304
|
+
|
|
305
|
+
## `eas branch:delete [NAME]`
|
|
306
|
+
|
|
307
|
+
delete a branch
|
|
308
|
+
|
|
309
|
+
```
|
|
310
|
+
USAGE
|
|
311
|
+
$ eas branch:delete [NAME] [--json] [--non-interactive]
|
|
312
|
+
|
|
313
|
+
ARGUMENTS
|
|
314
|
+
[NAME] Name of the branch to delete
|
|
315
|
+
|
|
316
|
+
FLAGS
|
|
317
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
318
|
+
--non-interactive Run the command in non-interactive mode.
|
|
319
|
+
|
|
320
|
+
DESCRIPTION
|
|
321
|
+
delete a branch
|
|
322
|
+
```
|
|
323
|
+
|
|
324
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
325
|
+
|
|
326
|
+
## `eas branch:list`
|
|
327
|
+
|
|
328
|
+
list all branches
|
|
329
|
+
|
|
330
|
+
```
|
|
331
|
+
USAGE
|
|
332
|
+
$ eas branch:list [--offset <value>] [--limit <value>] [--json] [--non-interactive]
|
|
333
|
+
|
|
334
|
+
FLAGS
|
|
335
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
336
|
+
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
|
|
337
|
+
--non-interactive Run the command in non-interactive mode.
|
|
338
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
339
|
+
|
|
340
|
+
DESCRIPTION
|
|
341
|
+
list all branches
|
|
342
|
+
```
|
|
343
|
+
|
|
344
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
345
|
+
|
|
346
|
+
## `eas branch:rename`
|
|
347
|
+
|
|
348
|
+
rename a branch
|
|
349
|
+
|
|
350
|
+
```
|
|
351
|
+
USAGE
|
|
352
|
+
$ eas branch:rename [--from <value>] [--to <value>] [--json] [--non-interactive]
|
|
353
|
+
|
|
354
|
+
FLAGS
|
|
355
|
+
--from=<value> current name of the branch.
|
|
356
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
357
|
+
--non-interactive Run the command in non-interactive mode.
|
|
358
|
+
--to=<value> new name of the branch.
|
|
359
|
+
|
|
360
|
+
DESCRIPTION
|
|
361
|
+
rename a branch
|
|
362
|
+
```
|
|
363
|
+
|
|
364
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
365
|
+
|
|
366
|
+
## `eas branch:view [NAME]`
|
|
367
|
+
|
|
368
|
+
view a branch
|
|
369
|
+
|
|
370
|
+
```
|
|
371
|
+
USAGE
|
|
372
|
+
$ eas branch:view [NAME] [--offset <value>] [--limit <value>] [--json] [--non-interactive]
|
|
373
|
+
|
|
374
|
+
ARGUMENTS
|
|
375
|
+
[NAME] Name of the branch to view
|
|
376
|
+
|
|
377
|
+
FLAGS
|
|
378
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
379
|
+
--limit=<value> The number of items to fetch each query. Defaults to 25 and is capped at 50.
|
|
380
|
+
--non-interactive Run the command in non-interactive mode.
|
|
381
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
382
|
+
|
|
383
|
+
DESCRIPTION
|
|
384
|
+
view a branch
|
|
385
|
+
```
|
|
386
|
+
|
|
387
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
388
|
+
|
|
389
|
+
## `eas build`
|
|
390
|
+
|
|
391
|
+
start a build
|
|
392
|
+
|
|
393
|
+
```
|
|
394
|
+
USAGE
|
|
395
|
+
$ eas build [-p android|ios|all] [-e PROFILE_NAME] [--local] [--output <value>] [--wait] [--clear-cache]
|
|
396
|
+
[-s | --auto-submit-with-profile PROFILE_NAME] [--what-to-test <value>] [-m <value>] [--build-logger-level
|
|
397
|
+
trace|debug|info|warn|error|fatal] [--freeze-credentials] [--verbose-logs] [--json] [--non-interactive]
|
|
398
|
+
|
|
399
|
+
FLAGS
|
|
400
|
+
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if
|
|
401
|
+
defined in eas.json.
|
|
402
|
+
-m, --message=<value> A short message describing the build
|
|
403
|
+
-p, --platform=<option> <options: android|ios|all>
|
|
404
|
+
-s, --auto-submit Submit on build complete using the submit profile with the same name as
|
|
405
|
+
the build profile
|
|
406
|
+
--auto-submit-with-profile=PROFILE_NAME Submit on build complete using the submit profile with provided name
|
|
407
|
+
--build-logger-level=<option> The level of logs to output during the build process. Defaults to "info".
|
|
408
|
+
<options: trace|debug|info|warn|error|fatal>
|
|
409
|
+
--clear-cache Clear cache before the build
|
|
410
|
+
--freeze-credentials Prevent the build from updating credentials in non-interactive mode
|
|
411
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies
|
|
412
|
+
--non-interactive.
|
|
413
|
+
--local Run build locally [experimental]
|
|
414
|
+
--non-interactive Run the command in non-interactive mode.
|
|
415
|
+
--output=<value> Output path for local build
|
|
416
|
+
--verbose-logs Use verbose logs for the build process
|
|
417
|
+
--[no-]wait Wait for build(s) to complete
|
|
418
|
+
--what-to-test=<value> Specify the "What to Test" information for the build in TestFlight
|
|
419
|
+
(iOS-only). To be used with the `auto-submit` flag
|
|
420
|
+
|
|
421
|
+
DESCRIPTION
|
|
422
|
+
start a build
|
|
423
|
+
```
|
|
424
|
+
|
|
425
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
426
|
+
|
|
427
|
+
## `eas build:cancel [BUILD_ID]`
|
|
428
|
+
|
|
429
|
+
cancel a build
|
|
430
|
+
|
|
431
|
+
```
|
|
432
|
+
USAGE
|
|
433
|
+
$ eas build:cancel [BUILD_ID] [--non-interactive] [-p android|ios|all] [-e PROFILE_NAME]
|
|
434
|
+
|
|
435
|
+
FLAGS
|
|
436
|
+
-e, --profile=PROFILE_NAME Filter builds by build profile if build ID is not provided
|
|
437
|
+
-p, --platform=<option> Filter builds by the platform if build ID is not provided
|
|
438
|
+
<options: android|ios|all>
|
|
439
|
+
--non-interactive Run the command in non-interactive mode.
|
|
440
|
+
|
|
441
|
+
DESCRIPTION
|
|
442
|
+
cancel a build
|
|
443
|
+
```
|
|
444
|
+
|
|
445
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
446
|
+
|
|
447
|
+
## `eas build:configure`
|
|
448
|
+
|
|
449
|
+
configure the project to support EAS Build
|
|
450
|
+
|
|
451
|
+
```
|
|
452
|
+
USAGE
|
|
453
|
+
$ eas build:configure [-p android|ios|all]
|
|
454
|
+
|
|
455
|
+
FLAGS
|
|
456
|
+
-p, --platform=<option> Platform to configure
|
|
457
|
+
<options: android|ios|all>
|
|
458
|
+
|
|
459
|
+
DESCRIPTION
|
|
460
|
+
configure the project to support EAS Build
|
|
461
|
+
```
|
|
462
|
+
|
|
463
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
464
|
+
|
|
465
|
+
## `eas build:delete [BUILD_ID]`
|
|
466
|
+
|
|
467
|
+
delete a build
|
|
468
|
+
|
|
469
|
+
```
|
|
470
|
+
USAGE
|
|
471
|
+
$ eas build:delete [BUILD_ID] [--non-interactive] [-p android|ios|all] [-e PROFILE_NAME]
|
|
472
|
+
|
|
473
|
+
FLAGS
|
|
474
|
+
-e, --profile=PROFILE_NAME Filter builds by build profile if build ID is not provided
|
|
475
|
+
-p, --platform=<option> Filter builds by the platform if build ID is not provided
|
|
476
|
+
<options: android|ios|all>
|
|
477
|
+
--non-interactive Run the command in non-interactive mode.
|
|
478
|
+
|
|
479
|
+
DESCRIPTION
|
|
480
|
+
delete a build
|
|
481
|
+
```
|
|
482
|
+
|
|
483
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
484
|
+
|
|
485
|
+
## `eas build:dev`
|
|
486
|
+
|
|
487
|
+
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
488
|
+
|
|
489
|
+
```
|
|
490
|
+
USAGE
|
|
491
|
+
$ eas build:dev [-p ios|android] [-e PROFILE_NAME] [--skip-build-if-not-found]
|
|
492
|
+
|
|
493
|
+
FLAGS
|
|
494
|
+
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. It must be a profile allowing to create
|
|
495
|
+
emulator/simulator internal distribution dev client builds. The "development-simulator"
|
|
496
|
+
build profile will be selected by default.
|
|
497
|
+
-p, --platform=<option> <options: ios|android>
|
|
498
|
+
--skip-build-if-not-found Skip build if no successful build with matching fingerprint is found.
|
|
499
|
+
|
|
500
|
+
DESCRIPTION
|
|
501
|
+
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
502
|
+
```
|
|
503
|
+
|
|
504
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/build/dev.ts)_
|
|
505
|
+
|
|
506
|
+
## `eas build:download`
|
|
507
|
+
|
|
508
|
+
download simulator/emulator builds for a given fingerprint hash
|
|
509
|
+
|
|
510
|
+
```
|
|
511
|
+
USAGE
|
|
512
|
+
$ eas build:download --fingerprint <value> [-p ios|android] [--dev-client] [--json] [--non-interactive]
|
|
513
|
+
|
|
514
|
+
FLAGS
|
|
515
|
+
-p, --platform=<option> <options: ios|android>
|
|
516
|
+
--[no-]dev-client Filter only dev-client builds.
|
|
517
|
+
--fingerprint=<value> (required) Fingerprint hash of the build to download
|
|
518
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
519
|
+
--non-interactive Run the command in non-interactive mode.
|
|
520
|
+
|
|
521
|
+
DESCRIPTION
|
|
522
|
+
download simulator/emulator builds for a given fingerprint hash
|
|
523
|
+
```
|
|
524
|
+
|
|
525
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/build/download.ts)_
|
|
526
|
+
|
|
527
|
+
## `eas build:inspect`
|
|
528
|
+
|
|
529
|
+
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
530
|
+
|
|
531
|
+
```
|
|
532
|
+
USAGE
|
|
533
|
+
$ eas build:inspect -p android|ios -s archive|pre-build|post-build -o OUTPUT_DIRECTORY [-e PROFILE_NAME]
|
|
534
|
+
[--force] [-v]
|
|
535
|
+
|
|
536
|
+
FLAGS
|
|
537
|
+
-e, --profile=PROFILE_NAME
|
|
538
|
+
Name of the build profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
539
|
+
|
|
540
|
+
-o, --output=OUTPUT_DIRECTORY
|
|
541
|
+
(required) Output directory.
|
|
542
|
+
|
|
543
|
+
-p, --platform=<option>
|
|
544
|
+
(required)
|
|
545
|
+
<options: android|ios>
|
|
546
|
+
|
|
547
|
+
-s, --stage=<option>
|
|
548
|
+
(required) Stage of the build you want to inspect.
|
|
549
|
+
archive - builds the project archive that would be uploaded to EAS when building
|
|
550
|
+
pre-build - prepares the project to be built with Gradle/Xcode. Does not run the native build.
|
|
551
|
+
post-build - builds the native project and leaves the output directory for inspection
|
|
552
|
+
<options: archive|pre-build|post-build>
|
|
553
|
+
|
|
554
|
+
-v, --verbose
|
|
555
|
+
|
|
556
|
+
--force
|
|
557
|
+
Delete OUTPUT_DIRECTORY if it already exists.
|
|
558
|
+
|
|
559
|
+
DESCRIPTION
|
|
560
|
+
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
561
|
+
```
|
|
562
|
+
|
|
563
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
564
|
+
|
|
565
|
+
## `eas build:list`
|
|
566
|
+
|
|
567
|
+
list all builds for your project
|
|
568
|
+
|
|
569
|
+
```
|
|
570
|
+
USAGE
|
|
571
|
+
$ eas build:list [-p android|ios|all] [--status
|
|
572
|
+
new|in-queue|in-progress|pending-cancel|errored|finished|canceled] [--distribution store|internal|simulator]
|
|
573
|
+
[--channel <value>] [--app-version <value>] [--app-build-version <value>] [--sdk-version <value>] [--runtime-version
|
|
574
|
+
<value>] [--app-identifier <value>] [-e <value>] [--git-commit-hash <value>] [--fingerprint-hash <value>] [--offset
|
|
575
|
+
<value>] [--limit <value>] [--json] [--non-interactive] [--simulator]
|
|
576
|
+
|
|
577
|
+
FLAGS
|
|
578
|
+
-e, --build-profile=<value> Filter only builds created with the specified build profile
|
|
579
|
+
-p, --platform=<option> <options: android|ios|all>
|
|
580
|
+
--app-build-version=<value> Filter only builds created with the specified app build version
|
|
581
|
+
--app-identifier=<value> Filter only builds created with the specified app identifier
|
|
582
|
+
--app-version=<value> Filter only builds created with the specified main app version
|
|
583
|
+
--channel=<value>
|
|
584
|
+
--distribution=<option> Filter only builds with the specified distribution type
|
|
585
|
+
<options: store|internal|simulator>
|
|
586
|
+
--fingerprint-hash=<value> Filter only builds with the specified fingerprint hash
|
|
587
|
+
--git-commit-hash=<value> Filter only builds created with the specified git commit hash
|
|
588
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies
|
|
589
|
+
--non-interactive.
|
|
590
|
+
--limit=<value> The number of items to fetch each query. Defaults to 10 and is capped at 50.
|
|
591
|
+
--non-interactive Run the command in non-interactive mode.
|
|
592
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
593
|
+
--runtime-version=<value> Filter only builds created with the specified runtime version
|
|
594
|
+
--sdk-version=<value> Filter only builds created with the specified Expo SDK version
|
|
595
|
+
--simulator Filter only iOS simulator builds. Can only be used with --platform flag set to "ios"
|
|
596
|
+
--status=<option> Filter only builds with the specified status
|
|
597
|
+
<options: new|in-queue|in-progress|pending-cancel|errored|finished|canceled>
|
|
598
|
+
|
|
599
|
+
DESCRIPTION
|
|
600
|
+
list all builds for your project
|
|
601
|
+
```
|
|
602
|
+
|
|
603
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
604
|
+
|
|
605
|
+
## `eas build:resign`
|
|
606
|
+
|
|
607
|
+
re-sign a build archive
|
|
608
|
+
|
|
609
|
+
```
|
|
610
|
+
USAGE
|
|
611
|
+
$ eas build:resign [-p android|ios] [-e PROFILE_NAME] [--source-profile PROFILE_NAME] [--wait] [--id <value>]
|
|
612
|
+
[--offset <value>] [--limit <value>] [--json] [--non-interactive]
|
|
613
|
+
|
|
614
|
+
FLAGS
|
|
615
|
+
-e, --target-profile=PROFILE_NAME Name of the target build profile from eas.json. Credentials and environment
|
|
616
|
+
variables from this profile will be used when re-signing. Defaults to "production"
|
|
617
|
+
if defined in eas.json.
|
|
618
|
+
-p, --platform=<option> <options: android|ios>
|
|
619
|
+
--id=<value> ID of the build to re-sign.
|
|
620
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies
|
|
621
|
+
--non-interactive.
|
|
622
|
+
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
|
|
623
|
+
--non-interactive Run the command in non-interactive mode.
|
|
624
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
625
|
+
--source-profile=PROFILE_NAME Name of the source build profile from eas.json. Used to filter builds eligible for
|
|
626
|
+
re-signing.
|
|
627
|
+
--[no-]wait Wait for build(s) to complete.
|
|
628
|
+
|
|
629
|
+
DESCRIPTION
|
|
630
|
+
re-sign a build archive
|
|
631
|
+
```
|
|
632
|
+
|
|
633
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
634
|
+
|
|
635
|
+
## `eas build:run`
|
|
636
|
+
|
|
637
|
+
run simulator/emulator builds from eas-cli
|
|
638
|
+
|
|
639
|
+
```
|
|
640
|
+
USAGE
|
|
641
|
+
$ eas build:run [--latest | --id <value> | --path <value> | --url <value>] [-p android|ios] [-e PROFILE_NAME]
|
|
642
|
+
[--offset <value>] [--limit <value>]
|
|
643
|
+
|
|
644
|
+
FLAGS
|
|
645
|
+
-e, --profile=PROFILE_NAME Name of the build profile used to create the build to run. When specified, only builds
|
|
646
|
+
created with the specified build profile will be queried.
|
|
647
|
+
-p, --platform=<option> <options: android|ios>
|
|
648
|
+
--id=<value> ID of the simulator/emulator build to run
|
|
649
|
+
--latest Run the latest simulator/emulator build for specified platform
|
|
650
|
+
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
|
|
651
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
652
|
+
--path=<value> Path to the simulator/emulator build archive or app
|
|
653
|
+
--url=<value> Simulator/Emulator build archive url
|
|
654
|
+
|
|
655
|
+
DESCRIPTION
|
|
656
|
+
run simulator/emulator builds from eas-cli
|
|
657
|
+
```
|
|
658
|
+
|
|
659
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
660
|
+
|
|
661
|
+
## `eas build:submit`
|
|
662
|
+
|
|
663
|
+
submit app binary to App Store and/or Play Store
|
|
664
|
+
|
|
665
|
+
```
|
|
666
|
+
USAGE
|
|
667
|
+
$ eas build:submit [-p android|ios|all] [-e <value>] [--latest | --id <value> | --path <value> | --url <value>]
|
|
668
|
+
[--what-to-test <value>] [--verbose] [--wait] [--verbose-fastlane] [-g <value>...] [--non-interactive]
|
|
669
|
+
|
|
670
|
+
FLAGS
|
|
671
|
+
-e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
672
|
+
-g, --groups=<value>... Internal TestFlight testing groups to add the build to (iOS only). Learn more: https://dev
|
|
673
|
+
eloper.apple.com/help/app-store-connect/test-a-beta-version/add-internal-testers
|
|
674
|
+
-p, --platform=<option> <options: android|ios|all>
|
|
675
|
+
--id=<value> ID of the build to submit
|
|
676
|
+
--latest Submit the latest build for specified platform
|
|
677
|
+
--non-interactive Run command in non-interactive mode
|
|
678
|
+
--path=<value> Path to the .apk/.aab/.ipa file
|
|
679
|
+
--url=<value> App archive url
|
|
680
|
+
--verbose Always print logs from EAS Submit
|
|
681
|
+
--verbose-fastlane Enable verbose logging for the submission process
|
|
682
|
+
--[no-]wait Wait for submission to complete
|
|
683
|
+
--what-to-test=<value> Sets the "What to test" information in TestFlight (iOS only).
|
|
684
|
+
|
|
685
|
+
DESCRIPTION
|
|
686
|
+
submit app binary to App Store and/or Play Store
|
|
687
|
+
|
|
688
|
+
ALIASES
|
|
689
|
+
$ eas build:submit
|
|
690
|
+
```
|
|
691
|
+
|
|
692
|
+
## `eas build:version:get`
|
|
693
|
+
|
|
694
|
+
get the latest version from EAS servers
|
|
695
|
+
|
|
696
|
+
```
|
|
697
|
+
USAGE
|
|
698
|
+
$ eas build:version:get [-p android|ios|all] [-e PROFILE_NAME] [--json] [--non-interactive]
|
|
699
|
+
|
|
700
|
+
FLAGS
|
|
701
|
+
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
702
|
+
-p, --platform=<option> <options: android|ios|all>
|
|
703
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies
|
|
704
|
+
--non-interactive.
|
|
705
|
+
--non-interactive Run the command in non-interactive mode.
|
|
706
|
+
|
|
707
|
+
DESCRIPTION
|
|
708
|
+
get the latest version from EAS servers
|
|
709
|
+
```
|
|
710
|
+
|
|
711
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
712
|
+
|
|
713
|
+
## `eas build:version:set`
|
|
714
|
+
|
|
715
|
+
update version of an app
|
|
716
|
+
|
|
717
|
+
```
|
|
718
|
+
USAGE
|
|
719
|
+
$ eas build:version:set [-p android|ios] [-e PROFILE_NAME]
|
|
720
|
+
|
|
721
|
+
FLAGS
|
|
722
|
+
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
723
|
+
-p, --platform=<option> <options: android|ios>
|
|
724
|
+
|
|
725
|
+
DESCRIPTION
|
|
726
|
+
update version of an app
|
|
727
|
+
```
|
|
728
|
+
|
|
729
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
730
|
+
|
|
731
|
+
## `eas build:version:sync`
|
|
732
|
+
|
|
733
|
+
update a version in native code with a value stored on EAS servers
|
|
734
|
+
|
|
735
|
+
```
|
|
736
|
+
USAGE
|
|
737
|
+
$ eas build:version:sync [-p android|ios|all] [-e PROFILE_NAME]
|
|
738
|
+
|
|
739
|
+
FLAGS
|
|
740
|
+
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
741
|
+
-p, --platform=<option> <options: android|ios|all>
|
|
742
|
+
|
|
743
|
+
DESCRIPTION
|
|
744
|
+
update a version in native code with a value stored on EAS servers
|
|
745
|
+
```
|
|
746
|
+
|
|
747
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
748
|
+
|
|
749
|
+
## `eas build:view [BUILD_ID]`
|
|
750
|
+
|
|
751
|
+
view a build for your project
|
|
752
|
+
|
|
753
|
+
```
|
|
754
|
+
USAGE
|
|
755
|
+
$ eas build:view [BUILD_ID] [--json]
|
|
756
|
+
|
|
757
|
+
FLAGS
|
|
758
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
759
|
+
|
|
760
|
+
DESCRIPTION
|
|
761
|
+
view a build for your project
|
|
762
|
+
```
|
|
763
|
+
|
|
764
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
765
|
+
|
|
766
|
+
## `eas channel:create [NAME]`
|
|
767
|
+
|
|
768
|
+
create a channel
|
|
769
|
+
|
|
770
|
+
```
|
|
771
|
+
USAGE
|
|
772
|
+
$ eas channel:create [NAME] [--json] [--non-interactive]
|
|
773
|
+
|
|
774
|
+
ARGUMENTS
|
|
775
|
+
[NAME] Name of the channel to create
|
|
776
|
+
|
|
777
|
+
FLAGS
|
|
778
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
779
|
+
--non-interactive Run the command in non-interactive mode.
|
|
780
|
+
|
|
781
|
+
DESCRIPTION
|
|
782
|
+
create a channel
|
|
783
|
+
```
|
|
784
|
+
|
|
785
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
786
|
+
|
|
787
|
+
## `eas channel:delete [NAME]`
|
|
788
|
+
|
|
789
|
+
Delete a channel
|
|
790
|
+
|
|
791
|
+
```
|
|
792
|
+
USAGE
|
|
793
|
+
$ eas channel:delete [NAME] [--json] [--non-interactive]
|
|
794
|
+
|
|
795
|
+
ARGUMENTS
|
|
796
|
+
[NAME] Name of the channel to delete
|
|
797
|
+
|
|
798
|
+
FLAGS
|
|
799
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
800
|
+
--non-interactive Run the command in non-interactive mode.
|
|
801
|
+
|
|
802
|
+
DESCRIPTION
|
|
803
|
+
Delete a channel
|
|
804
|
+
```
|
|
805
|
+
|
|
806
|
+
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/channel/delete.ts)_
|
|
807
|
+
|
|
808
|
+
## `eas channel:edit [NAME]`
|
|
809
|
+
|
|
810
|
+
point a channel at a new branch
|
|
811
|
+
|
|
812
|
+
```
|
|
813
|
+
USAGE
|
|
814
|
+
$ eas channel:edit [NAME] [--branch <value>] [--json] [--non-interactive]
|
|
815
|
+
|
|
816
|
+
ARGUMENTS
|
|
817
|
+
[NAME] Name of the channel to edit
|
|
818
|
+
|
|
819
|
+
FLAGS
|
|
820
|
+
--branch=<value> Name of the branch to point to
|
|
821
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
822
|
+
--non-interactive Run the command in non-interactive mode.
|
|
823
|
+
|
|
824
|
+
DESCRIPTION
|
|
825
|
+
point a channel at a new branch
|
|
826
|
+
```
|
|
827
|
+
|
|
828
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
829
|
+
|
|
830
|
+
## `eas channel:list`
|
|
831
|
+
|
|
832
|
+
list all channels
|
|
833
|
+
|
|
834
|
+
```
|
|
835
|
+
USAGE
|
|
836
|
+
$ eas channel:list [--offset <value>] [--limit <value>] [--json] [--non-interactive]
|
|
837
|
+
|
|
838
|
+
FLAGS
|
|
839
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
840
|
+
--limit=<value> The number of items to fetch each query. Defaults to 10 and is capped at 25.
|
|
841
|
+
--non-interactive Run the command in non-interactive mode.
|
|
842
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
843
|
+
|
|
844
|
+
DESCRIPTION
|
|
845
|
+
list all channels
|
|
846
|
+
```
|
|
847
|
+
|
|
848
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
849
|
+
|
|
850
|
+
## `eas channel:pause [NAME]`
|
|
851
|
+
|
|
852
|
+
pause a channel to stop it from sending updates
|
|
853
|
+
|
|
854
|
+
```
|
|
855
|
+
USAGE
|
|
856
|
+
$ eas channel:pause [NAME] [--branch <value>] [--json] [--non-interactive]
|
|
857
|
+
|
|
858
|
+
ARGUMENTS
|
|
859
|
+
[NAME] Name of the channel to edit
|
|
860
|
+
|
|
861
|
+
FLAGS
|
|
862
|
+
--branch=<value> Name of the branch to point to
|
|
863
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
864
|
+
--non-interactive Run the command in non-interactive mode.
|
|
865
|
+
|
|
866
|
+
DESCRIPTION
|
|
867
|
+
pause a channel to stop it from sending updates
|
|
868
|
+
```
|
|
869
|
+
|
|
870
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
871
|
+
|
|
872
|
+
## `eas channel:resume [NAME]`
|
|
873
|
+
|
|
874
|
+
resume a channel to start sending updates
|
|
875
|
+
|
|
876
|
+
```
|
|
877
|
+
USAGE
|
|
878
|
+
$ eas channel:resume [NAME] [--branch <value>] [--json] [--non-interactive]
|
|
879
|
+
|
|
880
|
+
ARGUMENTS
|
|
881
|
+
[NAME] Name of the channel to edit
|
|
882
|
+
|
|
883
|
+
FLAGS
|
|
884
|
+
--branch=<value> Name of the branch to point to
|
|
885
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
886
|
+
--non-interactive Run the command in non-interactive mode.
|
|
887
|
+
|
|
888
|
+
DESCRIPTION
|
|
889
|
+
resume a channel to start sending updates
|
|
890
|
+
```
|
|
891
|
+
|
|
892
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
893
|
+
|
|
894
|
+
## `eas channel:rollout [CHANNEL]`
|
|
895
|
+
|
|
896
|
+
Roll a new branch out on a channel incrementally.
|
|
897
|
+
|
|
898
|
+
```
|
|
899
|
+
USAGE
|
|
900
|
+
$ eas channel:rollout [CHANNEL] [--action create|edit|end|view] [--percent <value>] [--outcome
|
|
901
|
+
republish-and-revert|revert] [--branch <value>] [--runtime-version <value>] [--private-key-path <value>] [--json]
|
|
902
|
+
[--non-interactive]
|
|
903
|
+
|
|
904
|
+
ARGUMENTS
|
|
905
|
+
[CHANNEL] channel on which the rollout should be done
|
|
906
|
+
|
|
907
|
+
FLAGS
|
|
908
|
+
--action=<option> Rollout action to perform
|
|
909
|
+
<options: create|edit|end|view>
|
|
910
|
+
--branch=<value> Branch to roll out. Use with --action=create
|
|
911
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies
|
|
912
|
+
--non-interactive.
|
|
913
|
+
--non-interactive Run the command in non-interactive mode.
|
|
914
|
+
--outcome=<option> End outcome of rollout. Use with --action=end
|
|
915
|
+
<options: republish-and-revert|revert>
|
|
916
|
+
--percent=<value> Percent of users to send to the new branch. Use with --action=edit or --action=create
|
|
917
|
+
--private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
|
|
918
|
+
expo-updates' configuration. Defaults to a file named "private-key.pem" in the
|
|
919
|
+
certificate's directory. Only relevant if you are using code signing:
|
|
920
|
+
https://docs.expo.dev/eas-update/code-signing/
|
|
921
|
+
--runtime-version=<value> Runtime version to target. Use with --action=create
|
|
922
|
+
|
|
923
|
+
DESCRIPTION
|
|
924
|
+
Roll a new branch out on a channel incrementally.
|
|
925
|
+
```
|
|
926
|
+
|
|
927
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
928
|
+
|
|
929
|
+
## `eas channel:view [NAME]`
|
|
930
|
+
|
|
931
|
+
view a channel
|
|
932
|
+
|
|
933
|
+
```
|
|
934
|
+
USAGE
|
|
935
|
+
$ eas channel:view [NAME] [--json] [--non-interactive] [--offset <value>] [--limit <value>]
|
|
936
|
+
|
|
937
|
+
ARGUMENTS
|
|
938
|
+
[NAME] Name of the channel to view
|
|
939
|
+
|
|
940
|
+
FLAGS
|
|
941
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
942
|
+
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
|
|
943
|
+
--non-interactive Run the command in non-interactive mode.
|
|
944
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
945
|
+
|
|
946
|
+
DESCRIPTION
|
|
947
|
+
view a channel
|
|
948
|
+
```
|
|
949
|
+
|
|
950
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
951
|
+
|
|
952
|
+
## `eas config`
|
|
953
|
+
|
|
954
|
+
display project configuration (app.json + eas.json)
|
|
955
|
+
|
|
956
|
+
```
|
|
957
|
+
USAGE
|
|
958
|
+
$ eas config [-p android|ios] [-e PROFILE_NAME] [--json] [--non-interactive]
|
|
959
|
+
|
|
960
|
+
FLAGS
|
|
961
|
+
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
962
|
+
-p, --platform=<option> <options: android|ios>
|
|
963
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies
|
|
964
|
+
--non-interactive.
|
|
965
|
+
--non-interactive Run the command in non-interactive mode.
|
|
966
|
+
|
|
967
|
+
DESCRIPTION
|
|
968
|
+
display project configuration (app.json + eas.json)
|
|
969
|
+
```
|
|
970
|
+
|
|
971
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/config.ts)_
|
|
972
|
+
|
|
973
|
+
## `eas credentials`
|
|
974
|
+
|
|
975
|
+
manage credentials
|
|
976
|
+
|
|
977
|
+
```
|
|
978
|
+
USAGE
|
|
979
|
+
$ eas credentials [-p android|ios]
|
|
980
|
+
|
|
981
|
+
FLAGS
|
|
982
|
+
-p, --platform=<option> <options: android|ios>
|
|
983
|
+
|
|
984
|
+
DESCRIPTION
|
|
985
|
+
manage credentials
|
|
986
|
+
```
|
|
987
|
+
|
|
988
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
989
|
+
|
|
990
|
+
## `eas credentials:configure-build`
|
|
991
|
+
|
|
992
|
+
Set up credentials for building your project.
|
|
993
|
+
|
|
994
|
+
```
|
|
995
|
+
USAGE
|
|
996
|
+
$ eas credentials:configure-build [-p android|ios] [-e PROFILE_NAME]
|
|
997
|
+
|
|
998
|
+
FLAGS
|
|
999
|
+
-e, --profile=PROFILE_NAME The name of the build profile in eas.json.
|
|
1000
|
+
-p, --platform=<option> <options: android|ios>
|
|
1001
|
+
|
|
1002
|
+
DESCRIPTION
|
|
1003
|
+
Set up credentials for building your project.
|
|
1004
|
+
```
|
|
1005
|
+
|
|
1006
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
1007
|
+
|
|
1008
|
+
## `eas deploy [options]`
|
|
1009
|
+
|
|
1010
|
+
deploy your Expo Router web build and API Routes
|
|
1011
|
+
|
|
1012
|
+
```
|
|
1013
|
+
USAGE
|
|
1014
|
+
$ eas deploy [options]
|
|
1015
|
+
$ eas deploy --prod
|
|
1016
|
+
|
|
1017
|
+
FLAGS
|
|
1018
|
+
--alias=name Custom alias to assign to the new deployment.
|
|
1019
|
+
--dry-run Outputs a tarball of the new deployment instead of uploading it.
|
|
1020
|
+
--environment=<value> Environment variable's environment, e.g. 'production', 'preview', 'development'
|
|
1021
|
+
--export-dir=dir [default: dist] Directory where the Expo project was exported.
|
|
1022
|
+
--id=xyz123 Custom unique identifier for the new deployment.
|
|
1023
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1024
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1025
|
+
--prod Create a new production deployment.
|
|
1026
|
+
--[no-]source-maps Include source maps in the deployment.
|
|
1027
|
+
|
|
1028
|
+
DESCRIPTION
|
|
1029
|
+
deploy your Expo Router web build and API Routes
|
|
1030
|
+
|
|
1031
|
+
ALIASES
|
|
1032
|
+
$ eas worker:deploy
|
|
1033
|
+
```
|
|
1034
|
+
|
|
1035
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
1036
|
+
|
|
1037
|
+
## `eas deploy:alias`
|
|
1038
|
+
|
|
1039
|
+
Assign deployment aliases.
|
|
1040
|
+
|
|
1041
|
+
```
|
|
1042
|
+
USAGE
|
|
1043
|
+
$ eas deploy:alias [--prod] [--alias name] [--id xyz123] [--json] [--non-interactive]
|
|
1044
|
+
|
|
1045
|
+
FLAGS
|
|
1046
|
+
--alias=name Custom alias to assign to the existing deployment.
|
|
1047
|
+
--id=xyz123 Unique identifier of an existing deployment.
|
|
1048
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1049
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1050
|
+
--prod Promote an existing deployment to production.
|
|
1051
|
+
|
|
1052
|
+
DESCRIPTION
|
|
1053
|
+
Assign deployment aliases.
|
|
1054
|
+
|
|
1055
|
+
ALIASES
|
|
1056
|
+
$ eas worker:alias
|
|
1057
|
+
$ eas deploy:promote
|
|
1058
|
+
```
|
|
1059
|
+
|
|
1060
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
|
|
1061
|
+
|
|
1062
|
+
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1063
|
+
|
|
1064
|
+
Delete deployment aliases.
|
|
1065
|
+
|
|
1066
|
+
```
|
|
1067
|
+
USAGE
|
|
1068
|
+
$ eas deploy:alias:delete [ALIAS_NAME] [--json] [--non-interactive]
|
|
1069
|
+
|
|
1070
|
+
FLAGS
|
|
1071
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1072
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1073
|
+
|
|
1074
|
+
DESCRIPTION
|
|
1075
|
+
Delete deployment aliases.
|
|
1076
|
+
|
|
1077
|
+
ALIASES
|
|
1078
|
+
$ eas worker:alias:delete
|
|
1079
|
+
```
|
|
1080
|
+
|
|
1081
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
|
|
1082
|
+
|
|
1083
|
+
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1084
|
+
|
|
1085
|
+
Delete a deployment.
|
|
1086
|
+
|
|
1087
|
+
```
|
|
1088
|
+
USAGE
|
|
1089
|
+
$ eas deploy:delete [DEPLOYMENT_ID] [--json] [--non-interactive]
|
|
1090
|
+
|
|
1091
|
+
FLAGS
|
|
1092
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1093
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1094
|
+
|
|
1095
|
+
DESCRIPTION
|
|
1096
|
+
Delete a deployment.
|
|
1097
|
+
|
|
1098
|
+
ALIASES
|
|
1099
|
+
$ eas worker:delete
|
|
1100
|
+
```
|
|
1101
|
+
|
|
1102
|
+
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1103
|
+
|
|
1104
|
+
## `eas deploy:promote`
|
|
1105
|
+
|
|
1106
|
+
Assign deployment aliases.
|
|
1107
|
+
|
|
1108
|
+
```
|
|
1109
|
+
USAGE
|
|
1110
|
+
$ eas deploy:promote [--prod] [--alias name] [--id xyz123] [--json] [--non-interactive]
|
|
1111
|
+
|
|
1112
|
+
FLAGS
|
|
1113
|
+
--alias=name Custom alias to assign to the existing deployment.
|
|
1114
|
+
--id=xyz123 Unique identifier of an existing deployment.
|
|
1115
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1116
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1117
|
+
--prod Promote an existing deployment to production.
|
|
1118
|
+
|
|
1119
|
+
DESCRIPTION
|
|
1120
|
+
Assign deployment aliases.
|
|
1121
|
+
|
|
1122
|
+
ALIASES
|
|
1123
|
+
$ eas worker:alias
|
|
1124
|
+
$ eas deploy:promote
|
|
1125
|
+
```
|
|
1126
|
+
|
|
1127
|
+
## `eas device:create`
|
|
1128
|
+
|
|
1129
|
+
register new Apple Devices to use for internal distribution
|
|
1130
|
+
|
|
1131
|
+
```
|
|
1132
|
+
USAGE
|
|
1133
|
+
$ eas device:create
|
|
1134
|
+
|
|
1135
|
+
DESCRIPTION
|
|
1136
|
+
register new Apple Devices to use for internal distribution
|
|
1137
|
+
```
|
|
1138
|
+
|
|
1139
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
1140
|
+
|
|
1141
|
+
## `eas device:delete`
|
|
1142
|
+
|
|
1143
|
+
remove a registered device from your account
|
|
1144
|
+
|
|
1145
|
+
```
|
|
1146
|
+
USAGE
|
|
1147
|
+
$ eas device:delete [--apple-team-id <value>] [--udid <value>] [--json] [--non-interactive]
|
|
1148
|
+
|
|
1149
|
+
FLAGS
|
|
1150
|
+
--apple-team-id=<value> The Apple team ID on which to find the device
|
|
1151
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1152
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1153
|
+
--udid=<value> The Apple device ID to disable
|
|
1154
|
+
|
|
1155
|
+
DESCRIPTION
|
|
1156
|
+
remove a registered device from your account
|
|
1157
|
+
```
|
|
1158
|
+
|
|
1159
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1160
|
+
|
|
1161
|
+
## `eas device:list`
|
|
1162
|
+
|
|
1163
|
+
list all registered devices for your account
|
|
1164
|
+
|
|
1165
|
+
```
|
|
1166
|
+
USAGE
|
|
1167
|
+
$ eas device:list [--apple-team-id <value>] [--offset <value>] [--limit <value>] [--json] [--non-interactive]
|
|
1168
|
+
|
|
1169
|
+
FLAGS
|
|
1170
|
+
--apple-team-id=<value>
|
|
1171
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1172
|
+
--limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
|
|
1173
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1174
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
1175
|
+
|
|
1176
|
+
DESCRIPTION
|
|
1177
|
+
list all registered devices for your account
|
|
1178
|
+
```
|
|
1179
|
+
|
|
1180
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1181
|
+
|
|
1182
|
+
## `eas device:rename`
|
|
1183
|
+
|
|
1184
|
+
rename a registered device
|
|
1185
|
+
|
|
1186
|
+
```
|
|
1187
|
+
USAGE
|
|
1188
|
+
$ eas device:rename [--apple-team-id <value>] [--udid <value>] [--name <value>] [--json] [--non-interactive]
|
|
1189
|
+
|
|
1190
|
+
FLAGS
|
|
1191
|
+
--apple-team-id=<value> The Apple team ID on which to find the device
|
|
1192
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1193
|
+
--name=<value> The new name for the device
|
|
1194
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1195
|
+
--udid=<value> The Apple device ID to rename
|
|
1196
|
+
|
|
1197
|
+
DESCRIPTION
|
|
1198
|
+
rename a registered device
|
|
1199
|
+
```
|
|
1200
|
+
|
|
1201
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1202
|
+
|
|
1203
|
+
## `eas device:view [UDID]`
|
|
1204
|
+
|
|
1205
|
+
view a device for your project
|
|
1206
|
+
|
|
1207
|
+
```
|
|
1208
|
+
USAGE
|
|
1209
|
+
$ eas device:view [UDID]
|
|
1210
|
+
|
|
1211
|
+
DESCRIPTION
|
|
1212
|
+
view a device for your project
|
|
1213
|
+
```
|
|
1214
|
+
|
|
1215
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1216
|
+
|
|
1217
|
+
## `eas diagnostics`
|
|
1218
|
+
|
|
1219
|
+
display environment info
|
|
1220
|
+
|
|
1221
|
+
```
|
|
1222
|
+
USAGE
|
|
1223
|
+
$ eas diagnostics
|
|
1224
|
+
|
|
1225
|
+
DESCRIPTION
|
|
1226
|
+
display environment info
|
|
1227
|
+
```
|
|
1228
|
+
|
|
1229
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1230
|
+
|
|
1231
|
+
## `eas env:create [ENVIRONMENT]`
|
|
1232
|
+
|
|
1233
|
+
create an environment variable for the current project or account
|
|
1234
|
+
|
|
1235
|
+
```
|
|
1236
|
+
USAGE
|
|
1237
|
+
$ eas env:create [ENVIRONMENT] [--name <value>] [--value <value>] [--force] [--type string|file] [--visibility
|
|
1238
|
+
plaintext|sensitive|secret] [--scope project|account] [--environment <value>...] [--non-interactive]
|
|
1239
|
+
|
|
1240
|
+
ARGUMENTS
|
|
1241
|
+
[ENVIRONMENT] Environment to create the variable in. Default environments are 'production', 'preview', and
|
|
1242
|
+
'development'.
|
|
1243
|
+
|
|
1244
|
+
FLAGS
|
|
1245
|
+
--environment=<value>... Environment variable's environment, e.g. 'production', 'preview', 'development'
|
|
1246
|
+
--force Overwrite existing variable
|
|
1247
|
+
--name=<value> Name of the variable
|
|
1248
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1249
|
+
--scope=<option> [default: project] Scope for the variable
|
|
1250
|
+
<options: project|account>
|
|
1251
|
+
--type=<option> The type of variable
|
|
1252
|
+
<options: string|file>
|
|
1253
|
+
--value=<value> Text value or the variable
|
|
1254
|
+
--visibility=<option> Visibility of the variable
|
|
1255
|
+
<options: plaintext|sensitive|secret>
|
|
1256
|
+
|
|
1257
|
+
DESCRIPTION
|
|
1258
|
+
create an environment variable for the current project or account
|
|
1259
|
+
```
|
|
1260
|
+
|
|
1261
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1262
|
+
|
|
1263
|
+
## `eas env:delete [ENVIRONMENT]`
|
|
1264
|
+
|
|
1265
|
+
delete an environment variable for the current project or account
|
|
1266
|
+
|
|
1267
|
+
```
|
|
1268
|
+
USAGE
|
|
1269
|
+
$ eas env:delete [ENVIRONMENT] [--variable-name <value>] [--variable-environment <value>] [--scope
|
|
1270
|
+
project|account] [--non-interactive]
|
|
1271
|
+
|
|
1272
|
+
ARGUMENTS
|
|
1273
|
+
[ENVIRONMENT] Current environment of the variable to delete. Default environments are 'production', 'preview', and
|
|
1274
|
+
'development'.
|
|
1275
|
+
|
|
1276
|
+
FLAGS
|
|
1277
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1278
|
+
--scope=<option> [default: project] Scope for the variable
|
|
1279
|
+
<options: project|account>
|
|
1280
|
+
--variable-environment=<value> Current environment of the variable to delete
|
|
1281
|
+
--variable-name=<value> Name of the variable to delete
|
|
1282
|
+
|
|
1283
|
+
DESCRIPTION
|
|
1284
|
+
delete an environment variable for the current project or account
|
|
1285
|
+
```
|
|
1286
|
+
|
|
1287
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1288
|
+
|
|
1289
|
+
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1290
|
+
|
|
1291
|
+
execute a command with environment variables from the selected environment
|
|
1292
|
+
|
|
1293
|
+
```
|
|
1294
|
+
USAGE
|
|
1295
|
+
$ eas env:exec ENVIRONMENT BASH_COMMAND [--non-interactive]
|
|
1296
|
+
|
|
1297
|
+
ARGUMENTS
|
|
1298
|
+
ENVIRONMENT Environment to execute the command in. Default environments are 'production', 'preview', and
|
|
1299
|
+
'development'.
|
|
1300
|
+
BASH_COMMAND bash command to execute with the environment variables from the environment
|
|
1301
|
+
|
|
1302
|
+
FLAGS
|
|
1303
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1304
|
+
|
|
1305
|
+
DESCRIPTION
|
|
1306
|
+
execute a command with environment variables from the selected environment
|
|
1307
|
+
```
|
|
1308
|
+
|
|
1309
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1310
|
+
|
|
1311
|
+
## `eas env:get [ENVIRONMENT]`
|
|
1312
|
+
|
|
1313
|
+
view an environment variable for the current project or account
|
|
1314
|
+
|
|
1315
|
+
```
|
|
1316
|
+
USAGE
|
|
1317
|
+
$ eas env:get [ENVIRONMENT] [--variable-name <value>] [--variable-environment <value>] [--format
|
|
1318
|
+
long|short] [--scope project|account] [--non-interactive]
|
|
1319
|
+
|
|
1320
|
+
ARGUMENTS
|
|
1321
|
+
[ENVIRONMENT] Current environment of the variable. Default environments are 'production', 'preview', and
|
|
1322
|
+
'development'.
|
|
1323
|
+
|
|
1324
|
+
FLAGS
|
|
1325
|
+
--format=<option> [default: short] Output format
|
|
1326
|
+
<options: long|short>
|
|
1327
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1328
|
+
--scope=<option> [default: project] Scope for the variable
|
|
1329
|
+
<options: project|account>
|
|
1330
|
+
--variable-environment=<value> Current environment of the variable
|
|
1331
|
+
--variable-name=<value> Name of the variable
|
|
1332
|
+
|
|
1333
|
+
DESCRIPTION
|
|
1334
|
+
view an environment variable for the current project or account
|
|
1335
|
+
```
|
|
1336
|
+
|
|
1337
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1338
|
+
|
|
1339
|
+
## `eas env:list [ENVIRONMENT]`
|
|
1340
|
+
|
|
1341
|
+
list environment variables for the current project or account
|
|
1342
|
+
|
|
1343
|
+
```
|
|
1344
|
+
USAGE
|
|
1345
|
+
$ eas env:list [ENVIRONMENT] [--include-sensitive] [--include-file-content] [--environment <value>...]
|
|
1346
|
+
[--format long|short] [--scope project|account]
|
|
1347
|
+
|
|
1348
|
+
ARGUMENTS
|
|
1349
|
+
[ENVIRONMENT] Environment to list the variables from. Default environments are 'production', 'preview', and
|
|
1350
|
+
'development'.
|
|
1351
|
+
|
|
1352
|
+
FLAGS
|
|
1353
|
+
--environment=<value>... Environment variable's environment, e.g. 'production', 'preview', 'development'
|
|
1354
|
+
--format=<option> [default: short] Output format
|
|
1355
|
+
<options: long|short>
|
|
1356
|
+
--include-file-content Display files content in the output
|
|
1357
|
+
--include-sensitive Display sensitive values in the output
|
|
1358
|
+
--scope=<option> [default: project] Scope for the variable
|
|
1359
|
+
<options: project|account>
|
|
1360
|
+
|
|
1361
|
+
DESCRIPTION
|
|
1362
|
+
list environment variables for the current project or account
|
|
1363
|
+
```
|
|
1364
|
+
|
|
1365
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1366
|
+
|
|
1367
|
+
## `eas env:pull [ENVIRONMENT]`
|
|
1368
|
+
|
|
1369
|
+
pull environment variables for the selected environment to .env file
|
|
1370
|
+
|
|
1371
|
+
```
|
|
1372
|
+
USAGE
|
|
1373
|
+
$ eas env:pull [ENVIRONMENT] [--non-interactive] [--environment <value>] [--path <value>]
|
|
1374
|
+
|
|
1375
|
+
ARGUMENTS
|
|
1376
|
+
[ENVIRONMENT] Environment to pull variables from. Default environments are 'production', 'preview', and
|
|
1377
|
+
'development'.
|
|
1378
|
+
|
|
1379
|
+
FLAGS
|
|
1380
|
+
--environment=<value> Environment variable's environment, e.g. 'production', 'preview', 'development'
|
|
1381
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1382
|
+
--path=<value> [default: .env.local] Path to the result `.env` file
|
|
1383
|
+
|
|
1384
|
+
DESCRIPTION
|
|
1385
|
+
pull environment variables for the selected environment to .env file
|
|
1386
|
+
```
|
|
1387
|
+
|
|
1388
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1389
|
+
|
|
1390
|
+
## `eas env:push [ENVIRONMENT]`
|
|
1391
|
+
|
|
1392
|
+
push environment variables from .env file to the selected environment
|
|
1393
|
+
|
|
1394
|
+
```
|
|
1395
|
+
USAGE
|
|
1396
|
+
$ eas env:push [ENVIRONMENT] [--environment <value>...] [--path <value>] [--force]
|
|
1397
|
+
|
|
1398
|
+
ARGUMENTS
|
|
1399
|
+
[ENVIRONMENT] Environment to push variables to. Default environments are 'production', 'preview', and 'development'.
|
|
1400
|
+
|
|
1401
|
+
FLAGS
|
|
1402
|
+
--environment=<value>... Environment variable's environment, e.g. 'production', 'preview', 'development'
|
|
1403
|
+
--force Skip confirmation and automatically override existing variables
|
|
1404
|
+
--path=<value> [default: .env.local] Path to the input `.env` file
|
|
1405
|
+
|
|
1406
|
+
DESCRIPTION
|
|
1407
|
+
push environment variables from .env file to the selected environment
|
|
1408
|
+
```
|
|
1409
|
+
|
|
1410
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1411
|
+
|
|
1412
|
+
## `eas env:update [ENVIRONMENT]`
|
|
1413
|
+
|
|
1414
|
+
update an environment variable on the current project or account
|
|
1415
|
+
|
|
1416
|
+
```
|
|
1417
|
+
USAGE
|
|
1418
|
+
$ eas env:update [ENVIRONMENT] [--variable-name <value>] [--variable-environment <value>] [--name <value>]
|
|
1419
|
+
[--value <value>] [--type string|file] [--visibility plaintext|sensitive|secret] [--scope project|account]
|
|
1420
|
+
[--environment <value>...] [--non-interactive]
|
|
1421
|
+
|
|
1422
|
+
ARGUMENTS
|
|
1423
|
+
[ENVIRONMENT] Current environment of the variable to update. Default environments are 'production', 'preview', and
|
|
1424
|
+
'development'.
|
|
1425
|
+
|
|
1426
|
+
FLAGS
|
|
1427
|
+
--environment=<value>... Environment variable's environment, e.g. 'production', 'preview', 'development'
|
|
1428
|
+
--name=<value> New name of the variable
|
|
1429
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1430
|
+
--scope=<option> [default: project] Scope for the variable
|
|
1431
|
+
<options: project|account>
|
|
1432
|
+
--type=<option> The type of variable
|
|
1433
|
+
<options: string|file>
|
|
1434
|
+
--value=<value> New value or the variable
|
|
1435
|
+
--variable-environment=<value> Current environment of the variable to update
|
|
1436
|
+
--variable-name=<value> Current name of the variable
|
|
1437
|
+
--visibility=<option> Visibility of the variable
|
|
1438
|
+
<options: plaintext|sensitive|secret>
|
|
1439
|
+
|
|
1440
|
+
DESCRIPTION
|
|
1441
|
+
update an environment variable on the current project or account
|
|
1442
|
+
```
|
|
1443
|
+
|
|
1444
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1445
|
+
|
|
1446
|
+
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1447
|
+
|
|
1448
|
+
compare fingerprints of the current project, builds, and updates
|
|
1449
|
+
|
|
1450
|
+
```
|
|
1451
|
+
USAGE
|
|
1452
|
+
$ eas fingerprint:compare [HASH1...] [HASH2...] [--build-id <value>...] [--update-id <value>...] [--open]
|
|
1453
|
+
[--environment <value>] [--json] [--non-interactive]
|
|
1454
|
+
|
|
1455
|
+
ARGUMENTS
|
|
1456
|
+
[HASH1...] If provided alone, HASH1 is compared against the current project's fingerprint.
|
|
1457
|
+
[HASH2...] If two hashes are provided, HASH1 is compared against HASH2.
|
|
1458
|
+
|
|
1459
|
+
FLAGS
|
|
1460
|
+
--build-id=<value>... Compare the fingerprint with the build with the specified ID
|
|
1461
|
+
--environment=<value> If generating a fingerprint from the local directory, use the specified environment.
|
|
1462
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1463
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1464
|
+
--open Open the fingerprint comparison in the browser
|
|
1465
|
+
--update-id=<value>... Compare the fingerprint with the update with the specified ID
|
|
1466
|
+
|
|
1467
|
+
DESCRIPTION
|
|
1468
|
+
compare fingerprints of the current project, builds, and updates
|
|
1469
|
+
|
|
1470
|
+
EXAMPLES
|
|
1471
|
+
$ eas fingerprint:compare # Compare fingerprints in interactive mode
|
|
1472
|
+
|
|
1473
|
+
$ eas fingerprint:compare <FINGERPRINT-HASH> # Compare fingerprint against local directory
|
|
1474
|
+
|
|
1475
|
+
$ eas fingerprint:compare <FINGERPRINT-HASH-1> <FINGERPRINT-HASH-2> # Compare provided fingerprints
|
|
1476
|
+
|
|
1477
|
+
$ eas fingerprint:compare --build-id <BUILD-ID> # Compare fingerprint from build against local directory
|
|
1478
|
+
|
|
1479
|
+
$ eas fingerprint:compare --build-id <BUILD-ID> --environment production # Compare fingerprint from build against local directory with the "production" environment
|
|
1480
|
+
|
|
1481
|
+
$ eas fingerprint:compare --build-id <BUILD-ID-1> --build-id <BUILD-ID-2> # Compare fingerprint from a build against another build
|
|
1482
|
+
|
|
1483
|
+
$ eas fingerprint:compare --build-id <BUILD-ID> --update-id <UPDATE-ID> # Compare fingerprint from build against fingerprint from update
|
|
1484
|
+
|
|
1485
|
+
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1486
|
+
```
|
|
1487
|
+
|
|
1488
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1489
|
+
|
|
1490
|
+
## `eas fingerprint:generate`
|
|
1491
|
+
|
|
1492
|
+
generate fingerprints from the current project
|
|
1493
|
+
|
|
1494
|
+
```
|
|
1495
|
+
USAGE
|
|
1496
|
+
$ eas fingerprint:generate [-p android|ios] [--environment <value> | -e <value>] [--json] [--non-interactive]
|
|
1497
|
+
|
|
1498
|
+
FLAGS
|
|
1499
|
+
-e, --build-profile=<value> Name of the build profile from eas.json.
|
|
1500
|
+
-p, --platform=<option> <options: android|ios>
|
|
1501
|
+
--environment=<value> Environment variable's environment, e.g. 'production', 'preview', 'development'
|
|
1502
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies
|
|
1503
|
+
--non-interactive.
|
|
1504
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1505
|
+
|
|
1506
|
+
DESCRIPTION
|
|
1507
|
+
generate fingerprints from the current project
|
|
1508
|
+
|
|
1509
|
+
EXAMPLES
|
|
1510
|
+
$ eas fingerprint:generate # Generate fingerprint in interactive mode
|
|
1511
|
+
|
|
1512
|
+
$ eas fingerprint:generate --build-profile preview # Generate a fingerprint using the "preview" build profile
|
|
1513
|
+
|
|
1514
|
+
$ eas fingerprint:generate --environment preview # Generate a fingerprint using the "preview" environment
|
|
1515
|
+
|
|
1516
|
+
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1517
|
+
```
|
|
1518
|
+
|
|
1519
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1520
|
+
|
|
1521
|
+
## `eas help [COMMAND]`
|
|
1522
|
+
|
|
1523
|
+
Display help for eas.
|
|
1524
|
+
|
|
1525
|
+
```
|
|
1526
|
+
USAGE
|
|
1527
|
+
$ eas help [COMMAND...] [-n]
|
|
1528
|
+
|
|
1529
|
+
ARGUMENTS
|
|
1530
|
+
[COMMAND...] Command to show help for.
|
|
1531
|
+
|
|
1532
|
+
FLAGS
|
|
1533
|
+
-n, --nested-commands Include all nested commands in the output.
|
|
1534
|
+
|
|
1535
|
+
DESCRIPTION
|
|
1536
|
+
Display help for eas.
|
|
1537
|
+
```
|
|
1538
|
+
|
|
1539
|
+
_See code: [@expo/plugin-help](https://github.com/expo/oclif-plugin-help/blob/v5.1.23/packages/eas-cli/src/commands/help.ts)_
|
|
1540
|
+
|
|
1541
|
+
## `eas init`
|
|
1542
|
+
|
|
1543
|
+
create or link an EAS project
|
|
1544
|
+
|
|
1545
|
+
```
|
|
1546
|
+
USAGE
|
|
1547
|
+
$ eas init [--id <value>] [--force] [--non-interactive]
|
|
1548
|
+
|
|
1549
|
+
FLAGS
|
|
1550
|
+
--force Whether to create a new project/link an existing project without additional prompts or overwrite
|
|
1551
|
+
any existing project ID when running with --id flag
|
|
1552
|
+
--id=<value> ID of the EAS project to link
|
|
1553
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1554
|
+
|
|
1555
|
+
DESCRIPTION
|
|
1556
|
+
create or link an EAS project
|
|
1557
|
+
|
|
1558
|
+
ALIASES
|
|
1559
|
+
$ eas init
|
|
1560
|
+
```
|
|
1561
|
+
|
|
1562
|
+
## `eas init:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1563
|
+
|
|
1564
|
+
continue onboarding process started on the https://expo.new website.
|
|
1565
|
+
|
|
1566
|
+
```
|
|
1567
|
+
USAGE
|
|
1568
|
+
$ eas init:onboarding [TARGET_PROJECT_DIRECTORY]
|
|
1569
|
+
|
|
1570
|
+
DESCRIPTION
|
|
1571
|
+
continue onboarding process started on the https://expo.new website.
|
|
1572
|
+
|
|
1573
|
+
ALIASES
|
|
1574
|
+
$ eas init:onboarding
|
|
1575
|
+
$ eas onboarding
|
|
1576
|
+
```
|
|
1577
|
+
|
|
1578
|
+
## `eas login`
|
|
1579
|
+
|
|
1580
|
+
log in with your Expo account
|
|
1581
|
+
|
|
1582
|
+
```
|
|
1583
|
+
USAGE
|
|
1584
|
+
$ eas login [-s] [-b]
|
|
1585
|
+
|
|
1586
|
+
FLAGS
|
|
1587
|
+
-b, --browser Login with your browser
|
|
1588
|
+
-s, --sso Login with SSO
|
|
1589
|
+
|
|
1590
|
+
DESCRIPTION
|
|
1591
|
+
log in with your Expo account
|
|
1592
|
+
|
|
1593
|
+
ALIASES
|
|
1594
|
+
$ eas login
|
|
1595
|
+
```
|
|
1596
|
+
|
|
1597
|
+
## `eas logout`
|
|
1598
|
+
|
|
1599
|
+
log out
|
|
1600
|
+
|
|
1601
|
+
```
|
|
1602
|
+
USAGE
|
|
1603
|
+
$ eas logout
|
|
1604
|
+
|
|
1605
|
+
DESCRIPTION
|
|
1606
|
+
log out
|
|
1607
|
+
|
|
1608
|
+
ALIASES
|
|
1609
|
+
$ eas logout
|
|
1610
|
+
```
|
|
1611
|
+
|
|
1612
|
+
## `eas metadata:lint`
|
|
1613
|
+
|
|
1614
|
+
validate the local store configuration
|
|
1615
|
+
|
|
1616
|
+
```
|
|
1617
|
+
USAGE
|
|
1618
|
+
$ eas metadata:lint [--json] [--profile <value>]
|
|
1619
|
+
|
|
1620
|
+
FLAGS
|
|
1621
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr
|
|
1622
|
+
--profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
1623
|
+
|
|
1624
|
+
DESCRIPTION
|
|
1625
|
+
validate the local store configuration
|
|
1626
|
+
```
|
|
1627
|
+
|
|
1628
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1629
|
+
|
|
1630
|
+
## `eas metadata:pull`
|
|
1631
|
+
|
|
1632
|
+
generate the local store configuration from the app stores
|
|
1633
|
+
|
|
1634
|
+
```
|
|
1635
|
+
USAGE
|
|
1636
|
+
$ eas metadata:pull [-e <value>]
|
|
1637
|
+
|
|
1638
|
+
FLAGS
|
|
1639
|
+
-e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
1640
|
+
|
|
1641
|
+
DESCRIPTION
|
|
1642
|
+
generate the local store configuration from the app stores
|
|
1643
|
+
```
|
|
1644
|
+
|
|
1645
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1646
|
+
|
|
1647
|
+
## `eas metadata:push`
|
|
1648
|
+
|
|
1649
|
+
sync the local store configuration to the app stores
|
|
1650
|
+
|
|
1651
|
+
```
|
|
1652
|
+
USAGE
|
|
1653
|
+
$ eas metadata:push [-e <value>]
|
|
1654
|
+
|
|
1655
|
+
FLAGS
|
|
1656
|
+
-e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
1657
|
+
|
|
1658
|
+
DESCRIPTION
|
|
1659
|
+
sync the local store configuration to the app stores
|
|
1660
|
+
```
|
|
1661
|
+
|
|
1662
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1663
|
+
|
|
1664
|
+
## `eas new [PATH]`
|
|
1665
|
+
|
|
1666
|
+
Create a new project configured with Expo Application Services (EAS)
|
|
1667
|
+
|
|
1668
|
+
```
|
|
1669
|
+
USAGE
|
|
1670
|
+
$ eas new [PATH] [-p bun|npm|pnpm|yarn]
|
|
1671
|
+
|
|
1672
|
+
ARGUMENTS
|
|
1673
|
+
[PATH] Path to create the project (defaults to current directory)
|
|
1674
|
+
|
|
1675
|
+
FLAGS
|
|
1676
|
+
-p, --package-manager=<option> [default: npm] Package manager to use for installing dependencies
|
|
1677
|
+
<options: bun|npm|pnpm|yarn>
|
|
1678
|
+
|
|
1679
|
+
DESCRIPTION
|
|
1680
|
+
Create a new project configured with Expo Application Services (EAS)
|
|
1681
|
+
|
|
1682
|
+
ALIASES
|
|
1683
|
+
$ eas new
|
|
1684
|
+
```
|
|
1685
|
+
|
|
1686
|
+
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1687
|
+
|
|
1688
|
+
continue onboarding process started on the https://expo.new website.
|
|
1689
|
+
|
|
1690
|
+
```
|
|
1691
|
+
USAGE
|
|
1692
|
+
$ eas onboarding [TARGET_PROJECT_DIRECTORY]
|
|
1693
|
+
|
|
1694
|
+
DESCRIPTION
|
|
1695
|
+
continue onboarding process started on the https://expo.new website.
|
|
1696
|
+
|
|
1697
|
+
ALIASES
|
|
1698
|
+
$ eas init:onboarding
|
|
1699
|
+
$ eas onboarding
|
|
1700
|
+
```
|
|
1701
|
+
|
|
1702
|
+
## `eas open`
|
|
1703
|
+
|
|
1704
|
+
open the project page in a web browser
|
|
1705
|
+
|
|
1706
|
+
```
|
|
1707
|
+
USAGE
|
|
1708
|
+
$ eas open
|
|
1709
|
+
|
|
1710
|
+
DESCRIPTION
|
|
1711
|
+
open the project page in a web browser
|
|
1712
|
+
```
|
|
1713
|
+
|
|
1714
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/open.ts)_
|
|
1715
|
+
|
|
1716
|
+
## `eas project:info`
|
|
1717
|
+
|
|
1718
|
+
information about the current project
|
|
1719
|
+
|
|
1720
|
+
```
|
|
1721
|
+
USAGE
|
|
1722
|
+
$ eas project:info
|
|
1723
|
+
|
|
1724
|
+
DESCRIPTION
|
|
1725
|
+
information about the current project
|
|
1726
|
+
```
|
|
1727
|
+
|
|
1728
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1729
|
+
|
|
1730
|
+
## `eas project:init`
|
|
1731
|
+
|
|
1732
|
+
create or link an EAS project
|
|
1733
|
+
|
|
1734
|
+
```
|
|
1735
|
+
USAGE
|
|
1736
|
+
$ eas project:init [--id <value>] [--force] [--non-interactive]
|
|
1737
|
+
|
|
1738
|
+
FLAGS
|
|
1739
|
+
--force Whether to create a new project/link an existing project without additional prompts or overwrite
|
|
1740
|
+
any existing project ID when running with --id flag
|
|
1741
|
+
--id=<value> ID of the EAS project to link
|
|
1742
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1743
|
+
|
|
1744
|
+
DESCRIPTION
|
|
1745
|
+
create or link an EAS project
|
|
1746
|
+
|
|
1747
|
+
ALIASES
|
|
1748
|
+
$ eas init
|
|
1749
|
+
```
|
|
1750
|
+
|
|
1751
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1752
|
+
|
|
1753
|
+
## `eas project:new [PATH]`
|
|
1754
|
+
|
|
1755
|
+
Create a new project configured with Expo Application Services (EAS)
|
|
1756
|
+
|
|
1757
|
+
```
|
|
1758
|
+
USAGE
|
|
1759
|
+
$ eas project:new [PATH] [-p bun|npm|pnpm|yarn]
|
|
1760
|
+
|
|
1761
|
+
ARGUMENTS
|
|
1762
|
+
[PATH] Path to create the project (defaults to current directory)
|
|
1763
|
+
|
|
1764
|
+
FLAGS
|
|
1765
|
+
-p, --package-manager=<option> [default: npm] Package manager to use for installing dependencies
|
|
1766
|
+
<options: bun|npm|pnpm|yarn>
|
|
1767
|
+
|
|
1768
|
+
DESCRIPTION
|
|
1769
|
+
Create a new project configured with Expo Application Services (EAS)
|
|
1770
|
+
|
|
1771
|
+
ALIASES
|
|
1772
|
+
$ eas new
|
|
1773
|
+
```
|
|
1774
|
+
|
|
1775
|
+
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/project/new.ts)_
|
|
1776
|
+
|
|
1777
|
+
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1778
|
+
|
|
1779
|
+
continue onboarding process started on the https://expo.new website.
|
|
1780
|
+
|
|
1781
|
+
```
|
|
1782
|
+
USAGE
|
|
1783
|
+
$ eas project:onboarding [TARGET_PROJECT_DIRECTORY]
|
|
1784
|
+
|
|
1785
|
+
DESCRIPTION
|
|
1786
|
+
continue onboarding process started on the https://expo.new website.
|
|
1787
|
+
|
|
1788
|
+
ALIASES
|
|
1789
|
+
$ eas init:onboarding
|
|
1790
|
+
$ eas onboarding
|
|
1791
|
+
```
|
|
1792
|
+
|
|
1793
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1794
|
+
|
|
1795
|
+
## `eas submit`
|
|
1796
|
+
|
|
1797
|
+
submit app binary to App Store and/or Play Store
|
|
1798
|
+
|
|
1799
|
+
```
|
|
1800
|
+
USAGE
|
|
1801
|
+
$ eas submit [-p android|ios|all] [-e <value>] [--latest | --id <value> | --path <value> | --url <value>]
|
|
1802
|
+
[--what-to-test <value>] [--verbose] [--wait] [--verbose-fastlane] [-g <value>...] [--non-interactive]
|
|
1803
|
+
|
|
1804
|
+
FLAGS
|
|
1805
|
+
-e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
1806
|
+
-g, --groups=<value>... Internal TestFlight testing groups to add the build to (iOS only). Learn more: https://dev
|
|
1807
|
+
eloper.apple.com/help/app-store-connect/test-a-beta-version/add-internal-testers
|
|
1808
|
+
-p, --platform=<option> <options: android|ios|all>
|
|
1809
|
+
--id=<value> ID of the build to submit
|
|
1810
|
+
--latest Submit the latest build for specified platform
|
|
1811
|
+
--non-interactive Run command in non-interactive mode
|
|
1812
|
+
--path=<value> Path to the .apk/.aab/.ipa file
|
|
1813
|
+
--url=<value> App archive url
|
|
1814
|
+
--verbose Always print logs from EAS Submit
|
|
1815
|
+
--verbose-fastlane Enable verbose logging for the submission process
|
|
1816
|
+
--[no-]wait Wait for submission to complete
|
|
1817
|
+
--what-to-test=<value> Sets the "What to test" information in TestFlight (iOS only).
|
|
1818
|
+
|
|
1819
|
+
DESCRIPTION
|
|
1820
|
+
submit app binary to App Store and/or Play Store
|
|
1821
|
+
|
|
1822
|
+
ALIASES
|
|
1823
|
+
$ eas build:submit
|
|
1824
|
+
```
|
|
1825
|
+
|
|
1826
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1827
|
+
|
|
1828
|
+
## `eas update`
|
|
1829
|
+
|
|
1830
|
+
publish an update group
|
|
1831
|
+
|
|
1832
|
+
```
|
|
1833
|
+
USAGE
|
|
1834
|
+
$ eas update [--branch <value>] [--channel <value>] [-m <value>] [--input-dir <value>] [--skip-bundler]
|
|
1835
|
+
[--clear-cache] [--emit-metadata] [--rollout-percentage <value>] [-p android|ios|all] [--auto] [--private-key-path
|
|
1836
|
+
<value>] [--environment <value>] [--json] [--non-interactive]
|
|
1837
|
+
|
|
1838
|
+
FLAGS
|
|
1839
|
+
-m, --message=<value> A short message describing the update
|
|
1840
|
+
-p, --platform=<option> [default: all]
|
|
1841
|
+
<options: android|ios|all>
|
|
1842
|
+
--auto Use the current git branch and commit message for the EAS branch and update message
|
|
1843
|
+
--branch=<value> Branch to publish the update group on
|
|
1844
|
+
--channel=<value> Channel that the published update should affect
|
|
1845
|
+
--clear-cache Clear the bundler cache before publishing
|
|
1846
|
+
--emit-metadata Emit "eas-update-metadata.json" in the bundle folder with detailed information about
|
|
1847
|
+
the generated updates
|
|
1848
|
+
--environment=<value> Environment to use for the server-side defined EAS environment variables during
|
|
1849
|
+
command execution, e.g. "production", "preview", "development". Required for
|
|
1850
|
+
projects using Expo SDK 55 or greater.
|
|
1851
|
+
--input-dir=<value> [default: dist] Location of the bundle
|
|
1852
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies
|
|
1853
|
+
--non-interactive.
|
|
1854
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1855
|
+
--private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
|
|
1856
|
+
expo-updates' configuration. Defaults to a file named "private-key.pem" in the
|
|
1857
|
+
certificate's directory. Only relevant if you are using code signing:
|
|
1858
|
+
https://docs.expo.dev/eas-update/code-signing/
|
|
1859
|
+
--rollout-percentage=<value> Percentage of users this update should be immediately available to. Users not in the
|
|
1860
|
+
rollout will be served the previous latest update on the branch, even if that update
|
|
1861
|
+
is itself being rolled out. The specified number must be an integer between 1 and
|
|
1862
|
+
100. When not specified, this defaults to 100.
|
|
1863
|
+
--skip-bundler Skip running Expo CLI to bundle the app before publishing
|
|
1864
|
+
|
|
1865
|
+
DESCRIPTION
|
|
1866
|
+
publish an update group
|
|
1867
|
+
```
|
|
1868
|
+
|
|
1869
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1870
|
+
|
|
1871
|
+
## `eas update:configure`
|
|
1872
|
+
|
|
1873
|
+
configure the project to support EAS Update
|
|
1874
|
+
|
|
1875
|
+
```
|
|
1876
|
+
USAGE
|
|
1877
|
+
$ eas update:configure [-p android|ios|all] [--environment <value>] [--non-interactive]
|
|
1878
|
+
|
|
1879
|
+
FLAGS
|
|
1880
|
+
-p, --platform=<option> [default: all] Platform to configure
|
|
1881
|
+
<options: android|ios|all>
|
|
1882
|
+
--environment=<value> Environment to use for the server-side defined EAS environment variables during command
|
|
1883
|
+
execution, e.g. "production", "preview", "development".
|
|
1884
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1885
|
+
|
|
1886
|
+
DESCRIPTION
|
|
1887
|
+
configure the project to support EAS Update
|
|
1888
|
+
```
|
|
1889
|
+
|
|
1890
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1891
|
+
|
|
1892
|
+
## `eas update:delete GROUPID`
|
|
1893
|
+
|
|
1894
|
+
delete all the updates in an update group
|
|
1895
|
+
|
|
1896
|
+
```
|
|
1897
|
+
USAGE
|
|
1898
|
+
$ eas update:delete GROUPID [--json] [--non-interactive]
|
|
1899
|
+
|
|
1900
|
+
ARGUMENTS
|
|
1901
|
+
GROUPID The ID of an update group to delete.
|
|
1902
|
+
|
|
1903
|
+
FLAGS
|
|
1904
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
1905
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1906
|
+
|
|
1907
|
+
DESCRIPTION
|
|
1908
|
+
delete all the updates in an update group
|
|
1909
|
+
```
|
|
1910
|
+
|
|
1911
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1912
|
+
|
|
1913
|
+
## `eas update:edit [GROUPID]`
|
|
1914
|
+
|
|
1915
|
+
edit all the updates in an update group
|
|
1916
|
+
|
|
1917
|
+
```
|
|
1918
|
+
USAGE
|
|
1919
|
+
$ eas update:edit [GROUPID] [--rollout-percentage <value>] [--branch <value>] [--json] [--non-interactive]
|
|
1920
|
+
|
|
1921
|
+
ARGUMENTS
|
|
1922
|
+
[GROUPID] The ID of an update group to edit.
|
|
1923
|
+
|
|
1924
|
+
FLAGS
|
|
1925
|
+
--branch=<value> Branch for which to list updates to select from
|
|
1926
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies
|
|
1927
|
+
--non-interactive.
|
|
1928
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1929
|
+
--rollout-percentage=<value> Rollout percentage to set for a rollout update. The specified number must be an integer
|
|
1930
|
+
between 1 and 100.
|
|
1931
|
+
|
|
1932
|
+
DESCRIPTION
|
|
1933
|
+
edit all the updates in an update group
|
|
1934
|
+
```
|
|
1935
|
+
|
|
1936
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1937
|
+
|
|
1938
|
+
## `eas update:list`
|
|
1939
|
+
|
|
1940
|
+
view the recent updates
|
|
1941
|
+
|
|
1942
|
+
```
|
|
1943
|
+
USAGE
|
|
1944
|
+
$ eas update:list [--branch <value> | --all] [-p android|ios|all] [--runtime-version <value>] [--offset
|
|
1945
|
+
<value>] [--limit <value>] [--json] [--non-interactive]
|
|
1946
|
+
|
|
1947
|
+
FLAGS
|
|
1948
|
+
-p, --platform=<option> Filter updates by platform
|
|
1949
|
+
<options: android|ios|all>
|
|
1950
|
+
--all List updates on all branches
|
|
1951
|
+
--branch=<value> List updates only on this branch
|
|
1952
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies
|
|
1953
|
+
--non-interactive.
|
|
1954
|
+
--limit=<value> The number of items to fetch each query. Defaults to 25 and is capped at 50.
|
|
1955
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1956
|
+
--offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
|
|
1957
|
+
--runtime-version=<value> Filter updates by runtime version
|
|
1958
|
+
|
|
1959
|
+
DESCRIPTION
|
|
1960
|
+
view the recent updates
|
|
1961
|
+
```
|
|
1962
|
+
|
|
1963
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1964
|
+
|
|
1965
|
+
## `eas update:republish`
|
|
1966
|
+
|
|
1967
|
+
roll back to an existing update
|
|
1968
|
+
|
|
1969
|
+
```
|
|
1970
|
+
USAGE
|
|
1971
|
+
$ eas update:republish [--channel <value> | --branch <value> | --group <value>] [--destination-channel <value> |
|
|
1972
|
+
--destination-branch <value>] [-m <value>] [-p android|ios|all] [--private-key-path <value>] [--rollout-percentage
|
|
1973
|
+
<value>] [--json] [--non-interactive]
|
|
1974
|
+
|
|
1975
|
+
FLAGS
|
|
1976
|
+
-m, --message=<value> Short message describing the republished update group
|
|
1977
|
+
-p, --platform=<option> [default: all]
|
|
1978
|
+
<options: android|ios|all>
|
|
1979
|
+
--branch=<value> Branch name to select an update group to republish from
|
|
1980
|
+
--channel=<value> Channel name to select an update group to republish from
|
|
1981
|
+
--destination-branch=<value> Branch name to republish to if republishing to a different branch
|
|
1982
|
+
--destination-channel=<value> Channel name to select a branch to republish to if republishing to a different
|
|
1983
|
+
branch
|
|
1984
|
+
--group=<value> Update group ID to republish
|
|
1985
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies
|
|
1986
|
+
--non-interactive.
|
|
1987
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1988
|
+
--private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
|
|
1989
|
+
expo-updates' configuration. Defaults to a file named "private-key.pem" in the
|
|
1990
|
+
certificate's directory. Only relevant if you are using code signing:
|
|
1991
|
+
https://docs.expo.dev/eas-update/code-signing/
|
|
1992
|
+
--rollout-percentage=<value> Percentage of users this update should be immediately available to. Users not in
|
|
1993
|
+
the rollout will be served the previous latest update on the branch, even if that
|
|
1994
|
+
update is itself being rolled out. The specified number must be an integer between
|
|
1995
|
+
1 and 100. When not specified, this defaults to 100.
|
|
1996
|
+
|
|
1997
|
+
DESCRIPTION
|
|
1998
|
+
roll back to an existing update
|
|
1999
|
+
```
|
|
2000
|
+
|
|
2001
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
2002
|
+
|
|
2003
|
+
## `eas update:revert-update-rollout`
|
|
2004
|
+
|
|
2005
|
+
revert a rollout update for a project
|
|
2006
|
+
|
|
2007
|
+
```
|
|
2008
|
+
USAGE
|
|
2009
|
+
$ eas update:revert-update-rollout [--channel <value> | --branch <value> | --group <value>] [-m <value>] [--private-key-path
|
|
2010
|
+
<value>] [--json] [--non-interactive]
|
|
2011
|
+
|
|
2012
|
+
FLAGS
|
|
2013
|
+
-m, --message=<value> Short message describing the revert
|
|
2014
|
+
--branch=<value> Branch name to select an update group to revert the rollout update from
|
|
2015
|
+
--channel=<value> Channel name to select an update group to revert the rollout update from
|
|
2016
|
+
--group=<value> Rollout update group ID to revert
|
|
2017
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies
|
|
2018
|
+
--non-interactive.
|
|
2019
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2020
|
+
--private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
|
|
2021
|
+
expo-updates' configuration. Defaults to a file named "private-key.pem" in the
|
|
2022
|
+
certificate's directory. Only relevant if you are using code signing:
|
|
2023
|
+
https://docs.expo.dev/eas-update/code-signing/
|
|
2024
|
+
|
|
2025
|
+
DESCRIPTION
|
|
2026
|
+
revert a rollout update for a project
|
|
2027
|
+
```
|
|
2028
|
+
|
|
2029
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
2030
|
+
|
|
2031
|
+
## `eas update:roll-back-to-embedded`
|
|
2032
|
+
|
|
2033
|
+
roll back to the embedded update
|
|
2034
|
+
|
|
2035
|
+
```
|
|
2036
|
+
USAGE
|
|
2037
|
+
$ eas update:roll-back-to-embedded [--branch <value>] [--channel <value>] [--runtime-version <value>] [--message <value>] [-p
|
|
2038
|
+
android|ios|all] [--private-key-path <value>] [--json] [--non-interactive]
|
|
2039
|
+
|
|
2040
|
+
FLAGS
|
|
2041
|
+
-p, --platform=<option> [default: all]
|
|
2042
|
+
<options: android|ios|all>
|
|
2043
|
+
--branch=<value> Branch to publish the rollback to embedded update group on
|
|
2044
|
+
--channel=<value> Channel that the published rollback to embedded update should affect
|
|
2045
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies
|
|
2046
|
+
--non-interactive.
|
|
2047
|
+
--message=<value> A short message describing the rollback to embedded update
|
|
2048
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2049
|
+
--private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
|
|
2050
|
+
expo-updates' configuration. Defaults to a file named "private-key.pem" in the
|
|
2051
|
+
certificate's directory. Only relevant if you are using code signing:
|
|
2052
|
+
https://docs.expo.dev/eas-update/code-signing/
|
|
2053
|
+
--runtime-version=<value> Runtime version that the rollback to embedded update should target
|
|
2054
|
+
|
|
2055
|
+
DESCRIPTION
|
|
2056
|
+
roll back to the embedded update
|
|
2057
|
+
```
|
|
2058
|
+
|
|
2059
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
2060
|
+
|
|
2061
|
+
## `eas update:rollback`
|
|
2062
|
+
|
|
2063
|
+
Roll back to an embedded update or an existing update. Users wishing to run this command non-interactively should instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
2064
|
+
|
|
2065
|
+
```
|
|
2066
|
+
USAGE
|
|
2067
|
+
$ eas update:rollback [--private-key-path <value>]
|
|
2068
|
+
|
|
2069
|
+
FLAGS
|
|
2070
|
+
--private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
|
|
2071
|
+
expo-updates' configuration. Defaults to a file named "private-key.pem" in the
|
|
2072
|
+
certificate's directory. Only relevant if you are using code signing:
|
|
2073
|
+
https://docs.expo.dev/eas-update/code-signing/
|
|
2074
|
+
|
|
2075
|
+
DESCRIPTION
|
|
2076
|
+
Roll back to an embedded update or an existing update. Users wishing to run this command non-interactively should
|
|
2077
|
+
instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
2078
|
+
```
|
|
2079
|
+
|
|
2080
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
2081
|
+
|
|
2082
|
+
## `eas update:view GROUPID`
|
|
2083
|
+
|
|
2084
|
+
update group details
|
|
2085
|
+
|
|
2086
|
+
```
|
|
2087
|
+
USAGE
|
|
2088
|
+
$ eas update:view GROUPID [--json]
|
|
2089
|
+
|
|
2090
|
+
ARGUMENTS
|
|
2091
|
+
GROUPID The ID of an update group.
|
|
2092
|
+
|
|
2093
|
+
FLAGS
|
|
2094
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2095
|
+
|
|
2096
|
+
DESCRIPTION
|
|
2097
|
+
update group details
|
|
2098
|
+
```
|
|
2099
|
+
|
|
2100
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
2101
|
+
|
|
2102
|
+
## `eas upload`
|
|
2103
|
+
|
|
2104
|
+
upload a local build and generate a sharable link
|
|
2105
|
+
|
|
2106
|
+
```
|
|
2107
|
+
USAGE
|
|
2108
|
+
$ eas upload [-p ios|android] [--build-path <value>] [--fingerprint <value>] [--json] [--non-interactive]
|
|
2109
|
+
|
|
2110
|
+
FLAGS
|
|
2111
|
+
-p, --platform=<option> <options: ios|android>
|
|
2112
|
+
--build-path=<value> Path for the local build
|
|
2113
|
+
--fingerprint=<value> Fingerprint hash of the local build
|
|
2114
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
2115
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2116
|
+
|
|
2117
|
+
DESCRIPTION
|
|
2118
|
+
upload a local build and generate a sharable link
|
|
2119
|
+
```
|
|
2120
|
+
|
|
2121
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/upload.ts)_
|
|
2122
|
+
|
|
2123
|
+
## `eas webhook:create`
|
|
2124
|
+
|
|
2125
|
+
create a webhook
|
|
2126
|
+
|
|
2127
|
+
```
|
|
2128
|
+
USAGE
|
|
2129
|
+
$ eas webhook:create [--event BUILD|SUBMIT] [--url <value>] [--secret <value>] [--non-interactive]
|
|
2130
|
+
|
|
2131
|
+
FLAGS
|
|
2132
|
+
--event=<option> Event type that triggers the webhook
|
|
2133
|
+
<options: BUILD|SUBMIT>
|
|
2134
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2135
|
+
--secret=<value> Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature'
|
|
2136
|
+
header.
|
|
2137
|
+
--url=<value> Webhook URL
|
|
2138
|
+
|
|
2139
|
+
DESCRIPTION
|
|
2140
|
+
create a webhook
|
|
2141
|
+
```
|
|
2142
|
+
|
|
2143
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
2144
|
+
|
|
2145
|
+
## `eas webhook:delete [ID]`
|
|
2146
|
+
|
|
2147
|
+
delete a webhook
|
|
2148
|
+
|
|
2149
|
+
```
|
|
2150
|
+
USAGE
|
|
2151
|
+
$ eas webhook:delete [ID] [--non-interactive]
|
|
2152
|
+
|
|
2153
|
+
ARGUMENTS
|
|
2154
|
+
[ID] ID of the webhook to delete
|
|
2155
|
+
|
|
2156
|
+
FLAGS
|
|
2157
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2158
|
+
|
|
2159
|
+
DESCRIPTION
|
|
2160
|
+
delete a webhook
|
|
2161
|
+
```
|
|
2162
|
+
|
|
2163
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2164
|
+
|
|
2165
|
+
## `eas webhook:list`
|
|
2166
|
+
|
|
2167
|
+
list webhooks
|
|
2168
|
+
|
|
2169
|
+
```
|
|
2170
|
+
USAGE
|
|
2171
|
+
$ eas webhook:list [--event BUILD|SUBMIT] [--json]
|
|
2172
|
+
|
|
2173
|
+
FLAGS
|
|
2174
|
+
--event=<option> Event type that triggers the webhook
|
|
2175
|
+
<options: BUILD|SUBMIT>
|
|
2176
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2177
|
+
|
|
2178
|
+
DESCRIPTION
|
|
2179
|
+
list webhooks
|
|
2180
|
+
```
|
|
2181
|
+
|
|
2182
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2183
|
+
|
|
2184
|
+
## `eas webhook:update`
|
|
2185
|
+
|
|
2186
|
+
update a webhook
|
|
2187
|
+
|
|
2188
|
+
```
|
|
2189
|
+
USAGE
|
|
2190
|
+
$ eas webhook:update --id <value> [--event BUILD|SUBMIT] [--url <value>] [--secret <value>] [--non-interactive]
|
|
2191
|
+
|
|
2192
|
+
FLAGS
|
|
2193
|
+
--event=<option> Event type that triggers the webhook
|
|
2194
|
+
<options: BUILD|SUBMIT>
|
|
2195
|
+
--id=<value> (required) Webhook ID
|
|
2196
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2197
|
+
--secret=<value> Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature'
|
|
2198
|
+
header.
|
|
2199
|
+
--url=<value> Webhook URL
|
|
2200
|
+
|
|
2201
|
+
DESCRIPTION
|
|
2202
|
+
update a webhook
|
|
2203
|
+
```
|
|
2204
|
+
|
|
2205
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2206
|
+
|
|
2207
|
+
## `eas webhook:view ID`
|
|
2208
|
+
|
|
2209
|
+
view a webhook
|
|
2210
|
+
|
|
2211
|
+
```
|
|
2212
|
+
USAGE
|
|
2213
|
+
$ eas webhook:view ID
|
|
2214
|
+
|
|
2215
|
+
ARGUMENTS
|
|
2216
|
+
ID ID of the webhook to view
|
|
2217
|
+
|
|
2218
|
+
DESCRIPTION
|
|
2219
|
+
view a webhook
|
|
2220
|
+
```
|
|
2221
|
+
|
|
2222
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2223
|
+
|
|
2224
|
+
## `eas whoami`
|
|
2225
|
+
|
|
2226
|
+
show the username you are logged in as
|
|
2227
|
+
|
|
2228
|
+
```
|
|
2229
|
+
USAGE
|
|
2230
|
+
$ eas whoami
|
|
2231
|
+
|
|
2232
|
+
DESCRIPTION
|
|
2233
|
+
show the username you are logged in as
|
|
2234
|
+
|
|
2235
|
+
ALIASES
|
|
2236
|
+
$ eas whoami
|
|
2237
|
+
```
|
|
2238
|
+
|
|
2239
|
+
## `eas worker:alias`
|
|
2240
|
+
|
|
2241
|
+
Assign deployment aliases.
|
|
2242
|
+
|
|
2243
|
+
```
|
|
2244
|
+
USAGE
|
|
2245
|
+
$ eas worker:alias [--prod] [--alias name] [--id xyz123] [--json] [--non-interactive]
|
|
2246
|
+
|
|
2247
|
+
FLAGS
|
|
2248
|
+
--alias=name Custom alias to assign to the existing deployment.
|
|
2249
|
+
--id=xyz123 Unique identifier of an existing deployment.
|
|
2250
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
2251
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2252
|
+
--prod Promote an existing deployment to production.
|
|
2253
|
+
|
|
2254
|
+
DESCRIPTION
|
|
2255
|
+
Assign deployment aliases.
|
|
2256
|
+
|
|
2257
|
+
ALIASES
|
|
2258
|
+
$ eas worker:alias
|
|
2259
|
+
$ eas deploy:promote
|
|
2260
|
+
```
|
|
2261
|
+
|
|
2262
|
+
## `eas worker:alias:delete [ALIAS_NAME]`
|
|
2263
|
+
|
|
2264
|
+
Delete deployment aliases.
|
|
2265
|
+
|
|
2266
|
+
```
|
|
2267
|
+
USAGE
|
|
2268
|
+
$ eas worker:alias:delete [ALIAS_NAME] [--json] [--non-interactive]
|
|
2269
|
+
|
|
2270
|
+
FLAGS
|
|
2271
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
2272
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2273
|
+
|
|
2274
|
+
DESCRIPTION
|
|
2275
|
+
Delete deployment aliases.
|
|
2276
|
+
|
|
2277
|
+
ALIASES
|
|
2278
|
+
$ eas worker:alias:delete
|
|
2279
|
+
```
|
|
2280
|
+
|
|
2281
|
+
## `eas worker:delete [DEPLOYMENT_ID]`
|
|
2282
|
+
|
|
2283
|
+
Delete a deployment.
|
|
2284
|
+
|
|
2285
|
+
```
|
|
2286
|
+
USAGE
|
|
2287
|
+
$ eas worker:delete [DEPLOYMENT_ID] [--json] [--non-interactive]
|
|
2288
|
+
|
|
2289
|
+
FLAGS
|
|
2290
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
2291
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2292
|
+
|
|
2293
|
+
DESCRIPTION
|
|
2294
|
+
Delete a deployment.
|
|
2295
|
+
|
|
2296
|
+
ALIASES
|
|
2297
|
+
$ eas worker:delete
|
|
2298
|
+
```
|
|
2299
|
+
|
|
2300
|
+
## `eas deploy [options]`
|
|
2301
|
+
|
|
2302
|
+
deploy your Expo Router web build and API Routes
|
|
2303
|
+
|
|
2304
|
+
```
|
|
2305
|
+
USAGE
|
|
2306
|
+
$ eas worker:deploy deploy [options]
|
|
2307
|
+
$ eas worker:deploy deploy --prod
|
|
2308
|
+
|
|
2309
|
+
FLAGS
|
|
2310
|
+
--alias=name Custom alias to assign to the new deployment.
|
|
2311
|
+
--dry-run Outputs a tarball of the new deployment instead of uploading it.
|
|
2312
|
+
--environment=<value> Environment variable's environment, e.g. 'production', 'preview', 'development'
|
|
2313
|
+
--export-dir=dir [default: dist] Directory where the Expo project was exported.
|
|
2314
|
+
--id=xyz123 Custom unique identifier for the new deployment.
|
|
2315
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
|
|
2316
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2317
|
+
--prod Create a new production deployment.
|
|
2318
|
+
--[no-]source-maps Include source maps in the deployment.
|
|
2319
|
+
|
|
2320
|
+
DESCRIPTION
|
|
2321
|
+
deploy your Expo Router web build and API Routes
|
|
2322
|
+
|
|
2323
|
+
ALIASES
|
|
2324
|
+
$ eas worker:deploy
|
|
2325
|
+
```
|
|
2326
|
+
|
|
2327
|
+
## `eas workflow:cancel`
|
|
2328
|
+
|
|
2329
|
+
Cancel one or more workflow runs. If no workflow run IDs are provided, you will be prompted to select IN_PROGRESS runs to cancel.
|
|
2330
|
+
|
|
2331
|
+
```
|
|
2332
|
+
USAGE
|
|
2333
|
+
$ eas workflow:cancel [--non-interactive]
|
|
2334
|
+
|
|
2335
|
+
FLAGS
|
|
2336
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2337
|
+
|
|
2338
|
+
DESCRIPTION
|
|
2339
|
+
Cancel one or more workflow runs. If no workflow run IDs are provided, you will be prompted to select IN_PROGRESS runs
|
|
2340
|
+
to cancel.
|
|
2341
|
+
```
|
|
2342
|
+
|
|
2343
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2344
|
+
|
|
2345
|
+
## `eas workflow:create [NAME]`
|
|
2346
|
+
|
|
2347
|
+
create a new workflow configuration YAML file
|
|
2348
|
+
|
|
2349
|
+
```
|
|
2350
|
+
USAGE
|
|
2351
|
+
$ eas workflow:create [NAME] [--skip-validation]
|
|
2352
|
+
|
|
2353
|
+
ARGUMENTS
|
|
2354
|
+
[NAME] Name of the workflow file (must end with .yml or .yaml)
|
|
2355
|
+
|
|
2356
|
+
FLAGS
|
|
2357
|
+
--skip-validation If set, the workflow file will not be validated before being created
|
|
2358
|
+
|
|
2359
|
+
DESCRIPTION
|
|
2360
|
+
create a new workflow configuration YAML file
|
|
2361
|
+
```
|
|
2362
|
+
|
|
2363
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2364
|
+
|
|
2365
|
+
## `eas workflow:logs [ID]`
|
|
2366
|
+
|
|
2367
|
+
view logs for a workflow run, selecting a job and step to view. You can pass in either a workflow run ID or a job ID. If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2368
|
+
|
|
2369
|
+
```
|
|
2370
|
+
USAGE
|
|
2371
|
+
$ eas workflow:logs [ID] [--json] [--non-interactive] [--all-steps]
|
|
2372
|
+
|
|
2373
|
+
ARGUMENTS
|
|
2374
|
+
[ID] ID of the workflow run or workflow job to view logs for
|
|
2375
|
+
|
|
2376
|
+
FLAGS
|
|
2377
|
+
--all-steps Print all logs, rather than prompting for a specific step. This will be automatically set when in
|
|
2378
|
+
non-interactive mode.
|
|
2379
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2380
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2381
|
+
|
|
2382
|
+
DESCRIPTION
|
|
2383
|
+
view logs for a workflow run, selecting a job and step to view. You can pass in either a workflow run ID or a job ID.
|
|
2384
|
+
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2385
|
+
```
|
|
2386
|
+
|
|
2387
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2388
|
+
|
|
2389
|
+
## `eas workflow:run FILE`
|
|
2390
|
+
|
|
2391
|
+
run an EAS workflow. The entire local project directory will be packaged and uploaded to EAS servers for the workflow run, unless the --ref flag is used.
|
|
2392
|
+
|
|
2393
|
+
```
|
|
2394
|
+
USAGE
|
|
2395
|
+
$ eas workflow:run FILE [--non-interactive] [--wait] [-F <value>...] [--ref <value>] [--json]
|
|
2396
|
+
|
|
2397
|
+
ARGUMENTS
|
|
2398
|
+
FILE Path to the workflow file to run
|
|
2399
|
+
|
|
2400
|
+
FLAGS
|
|
2401
|
+
-F, --input=<value>... Set workflow inputs
|
|
2402
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2403
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2404
|
+
--ref=<value> Git reference to run the workflow on
|
|
2405
|
+
--[no-]wait Wait for workflow run to complete. Defaults to false.
|
|
2406
|
+
|
|
2407
|
+
DESCRIPTION
|
|
2408
|
+
run an EAS workflow. The entire local project directory will be packaged and uploaded to EAS servers for the workflow
|
|
2409
|
+
run, unless the --ref flag is used.
|
|
2410
|
+
|
|
2411
|
+
FLAG DESCRIPTIONS
|
|
2412
|
+
-F, --input=<value>... Set workflow inputs
|
|
2413
|
+
|
|
2414
|
+
Add a parameter in key=value format. Use multiple instances of this flag to set multiple inputs.
|
|
2415
|
+
|
|
2416
|
+
--ref=<value> Git reference to run the workflow on
|
|
2417
|
+
|
|
2418
|
+
The git reference must exist in the project's git repository, and the workflow file must exist at that reference.
|
|
2419
|
+
When this flag is used, the local project is not uploaded; instead, the workflow is run from the exact state of the
|
|
2420
|
+
project at the chosen reference.
|
|
2421
|
+
|
|
2422
|
+
--[no-]wait Wait for workflow run to complete. Defaults to false.
|
|
2423
|
+
|
|
2424
|
+
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2425
|
+
```
|
|
2426
|
+
|
|
2427
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2428
|
+
|
|
2429
|
+
## `eas workflow:runs`
|
|
2430
|
+
|
|
2431
|
+
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2432
|
+
|
|
2433
|
+
```
|
|
2434
|
+
USAGE
|
|
2435
|
+
$ eas workflow:runs [--workflow <value>] [--status ACTION_REQUIRED|CANCELED|FAILURE|IN_PROGRESS|NEW|SUCCESS]
|
|
2436
|
+
[--json] [--limit <value>]
|
|
2437
|
+
|
|
2438
|
+
FLAGS
|
|
2439
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2440
|
+
--limit=<value> The number of items to fetch each query. Defaults to 10 and is capped at 100.
|
|
2441
|
+
--status=<option> If present, filter the returned runs to select those with the specified status
|
|
2442
|
+
<options: ACTION_REQUIRED|CANCELED|FAILURE|IN_PROGRESS|NEW|SUCCESS>
|
|
2443
|
+
--workflow=<value> If present, the query will only return runs for the specified workflow file name
|
|
2444
|
+
|
|
2445
|
+
DESCRIPTION
|
|
2446
|
+
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2447
|
+
```
|
|
2448
|
+
|
|
2449
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2450
|
+
|
|
2451
|
+
## `eas workflow:status [WORKFLOW_RUN_ID]`
|
|
2452
|
+
|
|
2453
|
+
show the status of an existing workflow run. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.
|
|
2454
|
+
|
|
2455
|
+
```
|
|
2456
|
+
USAGE
|
|
2457
|
+
$ eas workflow:status [WORKFLOW_RUN_ID] [--non-interactive] [--wait] [--json]
|
|
2458
|
+
|
|
2459
|
+
ARGUMENTS
|
|
2460
|
+
[WORKFLOW_RUN_ID] A workflow run ID.
|
|
2461
|
+
|
|
2462
|
+
FLAGS
|
|
2463
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2464
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2465
|
+
--[no-]wait Wait for workflow run to complete. Defaults to false.
|
|
2466
|
+
|
|
2467
|
+
DESCRIPTION
|
|
2468
|
+
show the status of an existing workflow run. If no run ID is provided, you will be prompted to select from recent
|
|
2469
|
+
workflow runs for the current project.
|
|
2470
|
+
|
|
2471
|
+
FLAG DESCRIPTIONS
|
|
2472
|
+
--[no-]wait Wait for workflow run to complete. Defaults to false.
|
|
2473
|
+
|
|
2474
|
+
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2475
|
+
```
|
|
2476
|
+
|
|
2477
|
+
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/workflow/status.ts)_
|
|
2478
|
+
|
|
2479
|
+
## `eas workflow:validate PATH`
|
|
2480
|
+
|
|
2481
|
+
validate a workflow configuration yaml file
|
|
2482
|
+
|
|
2483
|
+
```
|
|
2484
|
+
USAGE
|
|
2485
|
+
$ eas workflow:validate PATH [--non-interactive]
|
|
2486
|
+
|
|
2487
|
+
ARGUMENTS
|
|
2488
|
+
PATH Path to the workflow configuration YAML file (must end with .yml or .yaml)
|
|
2489
|
+
|
|
2490
|
+
FLAGS
|
|
2491
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2492
|
+
|
|
2493
|
+
DESCRIPTION
|
|
2494
|
+
validate a workflow configuration yaml file
|
|
2495
|
+
```
|
|
2496
|
+
|
|
2497
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2498
|
+
|
|
2499
|
+
## `eas workflow:view [ID]`
|
|
2500
|
+
|
|
2501
|
+
view details for a workflow run, including jobs. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.
|
|
2502
|
+
|
|
2503
|
+
```
|
|
2504
|
+
USAGE
|
|
2505
|
+
$ eas workflow:view [ID] [--json] [--non-interactive]
|
|
2506
|
+
|
|
2507
|
+
ARGUMENTS
|
|
2508
|
+
[ID] ID of the workflow run to view
|
|
2509
|
+
|
|
2510
|
+
FLAGS
|
|
2511
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2512
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2513
|
+
|
|
2514
|
+
DESCRIPTION
|
|
2515
|
+
view details for a workflow run, including jobs. If no run ID is provided, you will be prompted to select from recent
|
|
2516
|
+
workflow runs for the current project.
|
|
2517
|
+
```
|
|
2518
|
+
|
|
2519
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2520
|
+
<!-- commandsstop -->
|