eas-cli 16.28.0 → 16.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +97 -94
- package/build/analytics/AnalyticsManager.js +4 -4
- package/build/analytics/common.js +1 -2
- package/build/api.js +5 -5
- package/build/branch/delete.js +1 -2
- package/build/branch/queries.js +5 -5
- package/build/branch/utils.js +2 -2
- package/build/build/android/build.js +3 -4
- package/build/build/android/graphql.js +1 -2
- package/build/build/android/prepareJob.js +1 -2
- package/build/build/android/syncProjectConfiguration.js +2 -3
- package/build/build/android/version.js +6 -6
- package/build/build/build.js +3 -4
- package/build/build/configure.js +4 -5
- package/build/build/createContext.js +1 -2
- package/build/build/evaluateConfigWithEnvVarsAsync.js +1 -2
- package/build/build/graphql.js +7 -7
- package/build/build/ios/build.js +2 -3
- package/build/build/ios/credentials.js +2 -3
- package/build/build/ios/graphql.js +2 -3
- package/build/build/ios/prepareJob.js +2 -3
- package/build/build/ios/syncProjectConfiguration.js +1 -2
- package/build/build/ios/version.js +10 -10
- package/build/build/local.js +2 -2
- package/build/build/metadata.js +3 -4
- package/build/build/queries.js +4 -4
- package/build/build/runBuildAndSubmit.js +2 -3
- package/build/build/utils/appJson.js +2 -3
- package/build/build/utils/credentials.js +1 -2
- package/build/build/utils/devClient.js +1 -2
- package/build/build/utils/formatBuild.js +2 -3
- package/build/build/utils/printBuildInfo.js +4 -5
- package/build/build/utils/repository.js +8 -9
- package/build/build/utils/resourceClass.js +1 -2
- package/build/build/utils/url.js +8 -9
- package/build/build/utils/version.js +2 -3
- package/build/build/validate.js +3 -4
- package/build/channel/branch-mapping.js +24 -24
- package/build/channel/delete.d.ts +5 -0
- package/build/channel/delete.js +23 -0
- package/build/channel/print-utils.js +2 -3
- package/build/channel/queries.js +8 -8
- package/build/channel/utils.js +1 -2
- package/build/commandUtils/builds.js +3 -4
- package/build/commandUtils/context/contextUtils/createGraphqlClient.js +1 -2
- package/build/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.js +2 -3
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +3 -4
- package/build/commandUtils/context/contextUtils/loadServerSideEnvironmentVariablesAsync.js +1 -2
- package/build/commandUtils/experienceParser.d.ts +6 -0
- package/build/commandUtils/experienceParser.js +42 -0
- package/build/commandUtils/new/commands.js +3 -4
- package/build/commandUtils/new/configs.js +4 -5
- package/build/commandUtils/new/projectFiles.js +6 -7
- package/build/commandUtils/new/utils.js +1 -2
- package/build/commandUtils/projectNameValidation.d.ts +8 -0
- package/build/commandUtils/projectNameValidation.js +30 -0
- package/build/commandUtils/workflow/buildProfileUtils.js +12 -13
- package/build/commandUtils/workflow/creation.js +5 -5
- package/build/commandUtils/workflow/fetchLogs.js +2 -3
- package/build/commandUtils/workflow/inputs.js +5 -5
- package/build/commandUtils/workflow/stateMachine.js +7 -7
- package/build/commandUtils/workflow/utils.js +12 -12
- package/build/commandUtils/workflow/validation.js +4 -5
- package/build/commands/build/cancel.js +1 -2
- package/build/commands/build/delete.js +1 -2
- package/build/commands/build/index.js +1 -2
- package/build/commands/channel/delete.js +7 -23
- package/build/commands/channel/edit.js +1 -2
- package/build/commands/channel/pause.js +1 -2
- package/build/commands/channel/resume.js +1 -2
- package/build/commands/deploy/index.js +1 -1
- package/build/commands/project/init.js +3 -1
- package/build/commands/project/new.js +3 -4
- package/build/commands/update/index.d.ts +8 -0
- package/build/commands/update/index.js +39 -56
- package/build/commands/update/list.d.ts +3 -0
- package/build/commands/update/list.js +30 -1
- package/build/commands/update/revert-update-rollout.js +1 -2
- package/build/credentials/android/actions/BuildCredentialsUtils.js +6 -7
- package/build/credentials/android/api/GraphqlClient.js +21 -21
- package/build/credentials/android/api/graphql/queries/AndroidAppCredentialsQuery.d.ts +2 -2
- package/build/credentials/android/api/graphql/queries/GoogleServiceAccountKeyQuery.d.ts +5 -5
- package/build/credentials/android/utils/googleServiceAccountKey.js +4 -4
- package/build/credentials/android/utils/keystore.js +2 -3
- package/build/credentials/android/utils/keystoreNew.js +3 -4
- package/build/credentials/android/utils/printCredentials.js +3 -4
- package/build/credentials/credentialsJson/read.js +3 -4
- package/build/credentials/credentialsJson/update.js +2 -3
- package/build/credentials/credentialsJson/utils.js +2 -3
- package/build/credentials/ios/actions/AppleTeamFormatting.js +1 -2
- package/build/credentials/ios/actions/AppleTeamUtils.js +1 -2
- package/build/credentials/ios/actions/AscApiKeyUtils.js +10 -10
- package/build/credentials/ios/actions/BuildCredentialsUtils.js +7 -8
- package/build/credentials/ios/actions/DeviceUtils.js +2 -3
- package/build/credentials/ios/actions/DistributionCertificateUtils.js +4 -5
- package/build/credentials/ios/actions/ProvisioningProfileUtils.js +2 -3
- package/build/credentials/ios/actions/PushKeyUtils.js +5 -6
- package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.js +2 -2
- package/build/credentials/ios/actions/SetUpTargetBuildCredentials.js +6 -2
- package/build/credentials/ios/api/GraphqlClient.js +24 -25
- package/build/credentials/ios/api/graphql/queries/AppStoreConnectApiKeyQuery.d.ts +5 -5
- package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.d.ts +8 -8
- package/build/credentials/ios/api/graphql/queries/AppleDistributionCertificateQuery.d.ts +5 -5
- package/build/credentials/ios/api/graphql/queries/ApplePushKeyQuery.d.ts +5 -5
- package/build/credentials/ios/api/graphql/queries/IosAppCredentialsQuery.d.ts +1 -1
- package/build/credentials/ios/appstore/AppStoreApi.d.ts +0 -2
- package/build/credentials/ios/appstore/Credentials.js +4 -5
- package/build/credentials/ios/appstore/Credentials.types.d.ts +0 -1
- package/build/credentials/ios/appstore/CredentialsUtils.js +6 -7
- package/build/credentials/ios/appstore/ascApiKey.d.ts +0 -1
- package/build/credentials/ios/appstore/ascApiKey.js +6 -7
- package/build/credentials/ios/appstore/authenticate.d.ts +0 -1
- package/build/credentials/ios/appstore/authenticate.js +4 -5
- package/build/credentials/ios/appstore/authenticateTypes.d.ts +0 -1
- package/build/credentials/ios/appstore/bundleId.d.ts +0 -1
- package/build/credentials/ios/appstore/bundleId.js +2 -3
- package/build/credentials/ios/appstore/bundleIdCapabilities.d.ts +0 -1
- package/build/credentials/ios/appstore/bundleIdCapabilities.js +3 -3
- package/build/credentials/ios/appstore/capabilityIdentifiers.d.ts +0 -1
- package/build/credentials/ios/appstore/capabilityIdentifiers.js +1 -2
- package/build/credentials/ios/appstore/capabilityList.d.ts +0 -1
- package/build/credentials/ios/appstore/contractMessages.d.ts +0 -1
- package/build/credentials/ios/appstore/contractMessages.js +2 -3
- package/build/credentials/ios/appstore/distributionCertificate.d.ts +0 -1
- package/build/credentials/ios/appstore/distributionCertificate.js +7 -7
- package/build/credentials/ios/appstore/ensureAppExists.d.ts +6 -1
- package/build/credentials/ios/appstore/ensureAppExists.js +55 -18
- package/build/credentials/ios/appstore/ensureTestFlightGroup.d.ts +0 -1
- package/build/credentials/ios/appstore/ensureTestFlightGroup.js +1 -2
- package/build/credentials/ios/appstore/keychain.js +4 -4
- package/build/credentials/ios/appstore/provisioningProfile.d.ts +0 -1
- package/build/credentials/ios/appstore/provisioningProfile.js +5 -5
- package/build/credentials/ios/appstore/provisioningProfileAdhoc.d.ts +0 -1
- package/build/credentials/ios/appstore/provisioningProfileAdhoc.js +1 -2
- package/build/credentials/ios/appstore/pushKey.js +4 -4
- package/build/credentials/ios/appstore/resolveCredentials.d.ts +0 -1
- package/build/credentials/ios/appstore/resolveCredentials.js +6 -7
- package/build/credentials/ios/credentials.d.ts +0 -1
- package/build/credentials/ios/credentials.js +2 -2
- package/build/credentials/ios/utils/authType.d.ts +0 -1
- package/build/credentials/ios/utils/authType.js +1 -2
- package/build/credentials/ios/utils/convertHTMLToASCII.js +1 -2
- package/build/credentials/ios/utils/p12Certificate.d.ts +0 -1
- package/build/credentials/ios/utils/p12Certificate.js +3 -4
- package/build/credentials/ios/utils/printCredentials.js +3 -4
- package/build/credentials/ios/utils/provisioningProfile.js +5 -6
- package/build/credentials/ios/validators/validateAscApiKey.js +2 -3
- package/build/credentials/ios/validators/validateDistributionCertificate.js +1 -2
- package/build/credentials/ios/validators/validateProvisioningProfile.js +1 -2
- package/build/credentials/ios/validators/validatePushKey.js +1 -2
- package/build/credentials/manager/IosActions.js +4 -4
- package/build/credentials/manager/SelectPlatform.js +1 -1
- package/build/credentials/utils/promptForCredentials.js +3 -4
- package/build/devices/actions/create/currentMachineMethod.js +1 -2
- package/build/devices/actions/create/developerPortalMethod.d.ts +0 -1
- package/build/devices/actions/create/developerPortalMethod.js +2 -3
- package/build/devices/actions/create/inputMethod.js +1 -2
- package/build/devices/actions/create/registrationUrlMethod.js +1 -2
- package/build/devices/actions/create/utils.js +4 -5
- package/build/devices/context.js +1 -2
- package/build/devices/queries.js +4 -4
- package/build/devices/udids.js +2 -3
- package/build/devices/utils/formatDevice.js +2 -3
- package/build/fetch.d.ts +0 -1
- package/build/fetch.js +1 -1
- package/build/fingerprint/cli.js +3 -4
- package/build/fingerprint/diff.js +1 -2
- package/build/fingerprint/types.d.ts +0 -1
- package/build/fingerprint/utils.js +4 -5
- package/build/graphql/client.js +2 -2
- package/build/graphql/generated.d.ts +177 -88
- package/build/graphql/generated.js +39 -3
- package/build/graphql/mutations/PublishMutation.d.ts +2 -2
- package/build/graphql/queries/AccountUsageQuery.d.ts +1 -1
- package/build/graphql/queries/AppVersionQuery.d.ts +1 -1
- package/build/graphql/queries/BackgroundJobReceiptQuery.d.ts +1 -1
- package/build/graphql/queries/BranchQuery.d.ts +3 -3
- package/build/graphql/queries/BuildQuery.d.ts +3 -3
- package/build/graphql/queries/ChannelQuery.d.ts +2 -2
- package/build/graphql/queries/ChannelQuery.js +2 -2
- package/build/graphql/queries/EnvironmentVariablesQuery.d.ts +12 -12
- package/build/graphql/queries/FingerprintQuery.d.ts +6 -6
- package/build/graphql/queries/PublishQuery.d.ts +1 -1
- package/build/graphql/queries/SubmissionQuery.d.ts +1 -1
- package/build/graphql/queries/UserQuery.d.ts +1 -1
- package/build/graphql/queries/WorkflowJobQuery.d.ts +2 -2
- package/build/graphql/queries/WorkflowRunQuery.d.ts +4 -4
- package/build/graphql/types/AppPlatform.js +2 -3
- package/build/log.js +2 -3
- package/build/metadata/apple/config/reader.d.ts +0 -1
- package/build/metadata/apple/config/writer.d.ts +0 -1
- package/build/metadata/apple/data.d.ts +0 -1
- package/build/metadata/apple/tasks/age-rating.d.ts +0 -1
- package/build/metadata/apple/tasks/age-rating.js +0 -1
- package/build/metadata/apple/tasks/app-info.d.ts +0 -1
- package/build/metadata/apple/tasks/app-info.js +15 -4
- package/build/metadata/apple/tasks/app-review-detail.d.ts +0 -1
- package/build/metadata/apple/tasks/app-review-detail.js +0 -1
- package/build/metadata/apple/tasks/app-version.d.ts +0 -1
- package/build/metadata/apple/tasks/app-version.js +15 -3
- package/build/metadata/apple/tasks/index.js +1 -2
- package/build/metadata/apple/types.d.ts +0 -1
- package/build/metadata/auth.d.ts +0 -1
- package/build/metadata/auth.js +1 -2
- package/build/metadata/config/resolve.js +4 -5
- package/build/metadata/config/validate.js +1 -2
- package/build/metadata/download.js +1 -2
- package/build/metadata/errors.js +3 -3
- package/build/metadata/upload.js +1 -2
- package/build/metadata/utils/ajv.js +2 -3
- package/build/metadata/utils/asc.d.ts +0 -1
- package/build/metadata/utils/date.js +1 -2
- package/build/metadata/utils/log.js +1 -2
- package/build/metadata/utils/retry.js +2 -3
- package/build/metadata/utils/telemetry.d.ts +0 -1
- package/build/metadata/utils/telemetry.js +2 -3
- package/build/onboarding/git.js +3 -4
- package/build/onboarding/installDependencies.js +3 -3
- package/build/onboarding/runCommand.js +1 -2
- package/build/ora.js +1 -2
- package/build/platform.d.ts +1 -0
- package/build/platform.js +28 -10
- package/build/project/android/applicationId.js +6 -6
- package/build/project/android/gradle.js +1 -2
- package/build/project/android/gradleUtils.js +4 -4
- package/build/project/android/versions.js +3 -3
- package/build/project/applicationIdentifier.js +1 -2
- package/build/project/customBuildConfig.js +3 -4
- package/build/project/expoConfig.js +5 -6
- package/build/project/expoSdk.js +1 -2
- package/build/project/fetchOrCreateProjectIDForWriteToConfigWithConfirmationAsync.js +2 -3
- package/build/project/ios/bundleIdentifier.js +6 -6
- package/build/project/ios/entitlements.js +2 -3
- package/build/project/ios/exemptEncryption.js +1 -2
- package/build/project/ios/scheme.js +2 -3
- package/build/project/ios/target.d.ts +0 -1
- package/build/project/ios/target.js +8 -9
- package/build/project/ios/versions.js +3 -3
- package/build/project/maybeUploadAssetMapAsync.js +1 -2
- package/build/project/maybeUploadFingerprintAsync.js +1 -2
- package/build/project/metroConfig.js +1 -2
- package/build/project/projectUtils.js +15 -16
- package/build/project/publish.d.ts +15 -2
- package/build/project/publish.js +56 -29
- package/build/project/remoteVersionSource.js +6 -6
- package/build/project/resolveRuntimeVersionAsync.js +2 -3
- package/build/project/uploadAccountScopedFileAsync.js +1 -2
- package/build/project/uploadAccountScopedProjectSourceAsync.js +1 -2
- package/build/project/workflow.js +3 -4
- package/build/prompts.js +5 -6
- package/build/rollout/branch-mapping.js +14 -15
- package/build/rollout/utils.js +5 -6
- package/build/run/android/aapt.js +2 -3
- package/build/run/android/adb.js +8 -9
- package/build/run/android/emulator.js +6 -6
- package/build/run/android/run.js +1 -2
- package/build/run/android/sdk.d.ts +0 -1
- package/build/run/android/sdk.js +2 -2
- package/build/run/android/systemRequirements.js +1 -2
- package/build/run/ios/run.js +1 -2
- package/build/run/ios/simctl.js +1 -2
- package/build/run/ios/simulator.js +9 -10
- package/build/run/ios/systemRequirements.js +1 -2
- package/build/run/ios/xcode.js +5 -5
- package/build/run/ios/xcrun.js +3 -4
- package/build/run/run.js +2 -3
- package/build/run/utils.js +1 -2
- package/build/submit/ArchiveSource.js +3 -3
- package/build/submit/android/ServiceAccountSource.js +4 -4
- package/build/submit/commons.js +2 -3
- package/build/submit/context.js +1 -2
- package/build/submit/ios/AppProduce.js +1 -2
- package/build/submit/ios/AppSpecificPasswordSource.js +3 -3
- package/build/submit/ios/AscApiKeySource.js +4 -4
- package/build/submit/ios/utils/language.js +1 -2
- package/build/submit/submit.js +3 -4
- package/build/submit/utils/builds.js +1 -2
- package/build/submit/utils/errors.js +1 -2
- package/build/submit/utils/files.js +2 -3
- package/build/submit/utils/logs.js +1 -2
- package/build/submit/utils/summary.js +2 -3
- package/build/submit/utils/urls.js +2 -3
- package/build/submit/utils/wait.js +2 -3
- package/build/update/android/UpdatesModule.js +2 -3
- package/build/update/configure.js +4 -4
- package/build/update/delete.js +1 -2
- package/build/update/getBranchFromChannelNameAndCreateAndLinkIfNotExistsAsync.js +1 -2
- package/build/update/ios/UpdatesModule.js +2 -3
- package/build/update/queries.d.ts +5 -3
- package/build/update/queries.js +12 -9
- package/build/update/republish.js +5 -6
- package/build/update/roll-back-to-embedded.js +1 -2
- package/build/update/utils.js +15 -15
- package/build/uploads.js +3 -4
- package/build/user/User.js +2 -3
- package/build/user/actions.js +1 -2
- package/build/user/expoSsoLauncher.js +1 -2
- package/build/user/fetchSessionSecretAndSsoUser.js +1 -2
- package/build/user/fetchSessionSecretAndUser.js +1 -2
- package/build/user/fetchUser.js +1 -2
- package/build/utils/code-signing.d.ts +0 -1
- package/build/utils/code-signing.js +7 -8
- package/build/utils/date.js +1 -2
- package/build/utils/download.js +2 -3
- package/build/utils/expoCli.js +4 -4
- package/build/utils/expoUpdatesCli.js +2 -2
- package/build/utils/expodash/areSetsEqual.js +1 -1
- package/build/utils/expodash/capitalize.js +1 -1
- package/build/utils/expodash/chunk.js +1 -1
- package/build/utils/expodash/differenceBy.js +1 -1
- package/build/utils/expodash/filter.js +1 -2
- package/build/utils/expodash/groupBy.js +1 -1
- package/build/utils/expodash/intersection.js +1 -1
- package/build/utils/expodash/mapMapAsync.js +1 -1
- package/build/utils/expodash/memoize.js +1 -2
- package/build/utils/expodash/pick.js +1 -1
- package/build/utils/expodash/sortBy.js +1 -1
- package/build/utils/expodash/uniq.js +1 -1
- package/build/utils/expodash/uniqBy.js +1 -1
- package/build/utils/expodash/zipObject.js +1 -1
- package/build/utils/files.js +2 -3
- package/build/utils/formatFields.js +1 -1
- package/build/utils/image.js +3 -3
- package/build/utils/json.js +2 -3
- package/build/utils/plist.d.ts +0 -1
- package/build/utils/plist.js +3 -4
- package/build/utils/pollForBackgroundJobReceiptAsync.js +2 -2
- package/build/utils/profiles.js +3 -4
- package/build/utils/progress.js +1 -2
- package/build/utils/promise.js +1 -2
- package/build/utils/prompts.js +8 -9
- package/build/utils/queries.js +2 -3
- package/build/utils/relay.js +4 -4
- package/build/utils/statuspageService.js +1 -2
- package/build/utils/timer.js +4 -5
- package/build/utils/usage/checkForOverages.js +4 -5
- package/build/utils/variableUtils.js +4 -5
- package/build/vcs/clients/git.js +1 -2
- package/build/vcs/git.js +5 -6
- package/build/vcs/index.js +1 -2
- package/build/vcs/local.js +2 -2
- package/build/webhooks/formatWebhook.js +1 -2
- package/build/webhooks/input.js +3 -4
- package/build/worker/assets.d.ts +0 -1
- package/build/worker/assets.js +6 -7
- package/build/worker/deployment.js +8 -9
- package/build/worker/mutations.d.ts +1 -1
- package/build/worker/queries.d.ts +4 -4
- package/build/worker/upload.d.ts +0 -2
- package/build/worker/upload.js +5 -6
- package/build/worker/utils/logs.js +5 -5
- package/build/worker/utils/multipart.js +3 -3
- package/oclif.manifest.json +35 -1
- package/package.json +13 -11
package/build/worker/upload.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.uploadAsync = uploadAsync;
|
|
4
|
+
exports.callUploadApiAsync = callUploadApiAsync;
|
|
5
|
+
exports.batchUploadAsync = batchUploadAsync;
|
|
6
|
+
exports.createProgressBar = createProgressBar;
|
|
4
7
|
const tslib_1 = require("tslib");
|
|
5
8
|
const cli_progress_1 = tslib_1.__importDefault(require("cli-progress"));
|
|
6
9
|
const https = tslib_1.__importStar(require("https"));
|
|
@@ -27,7 +30,7 @@ const getAgent = () => {
|
|
|
27
30
|
maxSockets: MAX_CONCURRENCY,
|
|
28
31
|
maxTotalSockets: MAX_CONCURRENCY,
|
|
29
32
|
scheduling: 'lifo',
|
|
30
|
-
timeout:
|
|
33
|
+
timeout: 4_000,
|
|
31
34
|
}));
|
|
32
35
|
}
|
|
33
36
|
};
|
|
@@ -127,7 +130,6 @@ async function uploadAsync(init, payload, onProgressUpdate) {
|
|
|
127
130
|
randomize: false,
|
|
128
131
|
});
|
|
129
132
|
}
|
|
130
|
-
exports.uploadAsync = uploadAsync;
|
|
131
133
|
async function callUploadApiAsync(url, init) {
|
|
132
134
|
return await (0, promise_retry_1.default)(async (retry) => {
|
|
133
135
|
let response;
|
|
@@ -151,7 +153,6 @@ async function callUploadApiAsync(url, init) {
|
|
|
151
153
|
}
|
|
152
154
|
});
|
|
153
155
|
}
|
|
154
|
-
exports.callUploadApiAsync = callUploadApiAsync;
|
|
155
156
|
async function* batchUploadAsync(init, payloads, onProgressUpdate) {
|
|
156
157
|
const progressTracker = new Array(payloads.length).fill(0);
|
|
157
158
|
const controller = new AbortController();
|
|
@@ -198,7 +199,6 @@ async function* batchUploadAsync(init, payloads, onProgressUpdate) {
|
|
|
198
199
|
}
|
|
199
200
|
}
|
|
200
201
|
}
|
|
201
|
-
exports.batchUploadAsync = batchUploadAsync;
|
|
202
202
|
function createProgressBar(label = 'Uploading assets') {
|
|
203
203
|
const queueProgressBar = new cli_progress_1.default.SingleBar({ format: `|{bar}| {percentage}% ${label}` }, cli_progress_1.default.Presets.rect);
|
|
204
204
|
queueProgressBar.start(1, 0);
|
|
@@ -211,4 +211,3 @@ function createProgressBar(label = 'Uploading assets') {
|
|
|
211
211
|
},
|
|
212
212
|
};
|
|
213
213
|
}
|
|
214
|
-
exports.createProgressBar = createProgressBar;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.EXPO_BASE_DOMAIN = void 0;
|
|
4
|
+
exports.getDeploymentUrlFromFullName = getDeploymentUrlFromFullName;
|
|
5
|
+
exports.getDashboardUrl = getDashboardUrl;
|
|
6
|
+
exports.formatWorkerDeploymentTable = formatWorkerDeploymentTable;
|
|
7
|
+
exports.formatWorkerDeploymentJson = formatWorkerDeploymentJson;
|
|
4
8
|
const tslib_1 = require("tslib");
|
|
5
9
|
const chalk_1 = tslib_1.__importDefault(require("chalk"));
|
|
6
10
|
const formatFields_1 = tslib_1.__importDefault(require("../../utils/formatFields"));
|
|
@@ -8,11 +12,9 @@ exports.EXPO_BASE_DOMAIN = process.env.EXPO_STAGING ? 'staging.expo' : 'expo';
|
|
|
8
12
|
function getDeploymentUrlFromFullName(deploymentFullName) {
|
|
9
13
|
return `https://${deploymentFullName}.${exports.EXPO_BASE_DOMAIN}.app`;
|
|
10
14
|
}
|
|
11
|
-
exports.getDeploymentUrlFromFullName = getDeploymentUrlFromFullName;
|
|
12
15
|
function getDashboardUrl(projectId) {
|
|
13
16
|
return `https://${exports.EXPO_BASE_DOMAIN}.dev/projects/${projectId}/hosting/deployments`;
|
|
14
17
|
}
|
|
15
|
-
exports.getDashboardUrl = getDashboardUrl;
|
|
16
18
|
function formatWorkerDeploymentTable(data) {
|
|
17
19
|
const fields = [
|
|
18
20
|
{ label: 'Dashboard', value: getDashboardUrl(data.projectId) },
|
|
@@ -31,7 +33,6 @@ function formatWorkerDeploymentTable(data) {
|
|
|
31
33
|
lastUrlField.value = chalk_1.default.cyan(lastUrlField.value);
|
|
32
34
|
return (0, formatFields_1.default)(fields);
|
|
33
35
|
}
|
|
34
|
-
exports.formatWorkerDeploymentTable = formatWorkerDeploymentTable;
|
|
35
36
|
function formatWorkerDeploymentJson(data) {
|
|
36
37
|
const aliases = !data.aliases
|
|
37
38
|
? []
|
|
@@ -51,4 +52,3 @@ function formatWorkerDeploymentJson(data) {
|
|
|
51
52
|
},
|
|
52
53
|
};
|
|
53
54
|
}
|
|
54
|
-
exports.formatWorkerDeploymentJson = formatWorkerDeploymentJson;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.multipartContentType = void 0;
|
|
4
|
+
exports.createReadStreamAsync = createReadStreamAsync;
|
|
5
|
+
exports.createMultipartBodyFromFilesAsync = createMultipartBodyFromFilesAsync;
|
|
4
6
|
const tslib_1 = require("tslib");
|
|
5
7
|
const node_crypto_1 = require("node:crypto");
|
|
6
8
|
const node_fs_1 = tslib_1.__importDefault(require("node:fs"));
|
|
@@ -61,7 +63,6 @@ async function* createReadStreamAsync(fileEntry) {
|
|
|
61
63
|
await handle?.close();
|
|
62
64
|
}
|
|
63
65
|
}
|
|
64
|
-
exports.createReadStreamAsync = createReadStreamAsync;
|
|
65
66
|
const makeFormHeader = (params) => {
|
|
66
67
|
const name = encodeName(params.name);
|
|
67
68
|
let header = BOUNDARY_HYPHEN_CHARS + BOUNDARY_ID + CRLF;
|
|
@@ -95,4 +96,3 @@ async function* createMultipartBodyFromFilesAsync(entries, onProgressUpdate) {
|
|
|
95
96
|
}
|
|
96
97
|
yield encoder.encode(FORM_FOOTER);
|
|
97
98
|
}
|
|
98
|
-
exports.createMultipartBodyFromFilesAsync = createMultipartBodyFromFilesAsync;
|
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "16.
|
|
2
|
+
"version": "16.31.0",
|
|
3
3
|
"commands": {
|
|
4
4
|
"analytics": {
|
|
5
5
|
"id": "analytics",
|
|
@@ -3435,6 +3435,21 @@
|
|
|
3435
3435
|
"description": "Clear the bundler cache before publishing",
|
|
3436
3436
|
"allowNo": false
|
|
3437
3437
|
},
|
|
3438
|
+
"no-bytecode": {
|
|
3439
|
+
"name": "no-bytecode",
|
|
3440
|
+
"type": "boolean",
|
|
3441
|
+
"description": "Skip generating Hermes bytecode (output plain JavaScript instead)",
|
|
3442
|
+
"hidden": true,
|
|
3443
|
+
"allowNo": false
|
|
3444
|
+
},
|
|
3445
|
+
"source-maps": {
|
|
3446
|
+
"name": "source-maps",
|
|
3447
|
+
"type": "option",
|
|
3448
|
+
"description": "Emit source maps. Options: true (default), inline, false",
|
|
3449
|
+
"hidden": true,
|
|
3450
|
+
"multiple": false,
|
|
3451
|
+
"default": "true"
|
|
3452
|
+
},
|
|
3438
3453
|
"emit-metadata": {
|
|
3439
3454
|
"name": "emit-metadata",
|
|
3440
3455
|
"type": "boolean",
|
|
@@ -3534,6 +3549,25 @@
|
|
|
3534
3549
|
"branch"
|
|
3535
3550
|
]
|
|
3536
3551
|
},
|
|
3552
|
+
"platform": {
|
|
3553
|
+
"name": "platform",
|
|
3554
|
+
"type": "option",
|
|
3555
|
+
"char": "p",
|
|
3556
|
+
"description": "Filter updates by platform",
|
|
3557
|
+
"helpValue": "(android|ios|all)",
|
|
3558
|
+
"multiple": false,
|
|
3559
|
+
"options": [
|
|
3560
|
+
"android",
|
|
3561
|
+
"ios",
|
|
3562
|
+
"all"
|
|
3563
|
+
]
|
|
3564
|
+
},
|
|
3565
|
+
"runtime-version": {
|
|
3566
|
+
"name": "runtime-version",
|
|
3567
|
+
"type": "option",
|
|
3568
|
+
"description": "Filter updates by runtime version",
|
|
3569
|
+
"multiple": false
|
|
3570
|
+
},
|
|
3537
3571
|
"offset": {
|
|
3538
3572
|
"name": "offset",
|
|
3539
3573
|
"type": "option",
|
package/package.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
3
|
"description": "EAS command line tool",
|
|
4
|
-
"version": "16.
|
|
4
|
+
"version": "16.31.0",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bin": {
|
|
7
7
|
"eas": "./bin/run"
|
|
8
8
|
},
|
|
9
9
|
"bugs": "https://github.com/expo/eas-cli/issues",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@expo/apple-utils": "2.1.
|
|
11
|
+
"@expo/apple-utils": "2.1.13",
|
|
12
12
|
"@expo/code-signing-certificates": "0.0.5",
|
|
13
13
|
"@expo/config": "10.0.6",
|
|
14
14
|
"@expo/config-plugins": "9.0.12",
|
|
15
15
|
"@expo/eas-build-job": "1.0.243",
|
|
16
|
-
"@expo/eas-json": "16.
|
|
16
|
+
"@expo/eas-json": "16.30.0",
|
|
17
17
|
"@expo/env": "^1.0.0",
|
|
18
18
|
"@expo/json-file": "8.3.3",
|
|
19
19
|
"@expo/logger": "1.0.221",
|
|
20
20
|
"@expo/multipart-body-parser": "2.0.0",
|
|
21
21
|
"@expo/osascript": "2.1.4",
|
|
22
|
-
"@expo/package-manager": "1.
|
|
22
|
+
"@expo/package-manager": "1.9.10",
|
|
23
23
|
"@expo/pkcs12": "0.1.3",
|
|
24
24
|
"@expo/plist": "0.2.0",
|
|
25
25
|
"@expo/plugin-help": "5.1.23",
|
|
@@ -58,6 +58,7 @@
|
|
|
58
58
|
"https-proxy-agent": "5.0.1",
|
|
59
59
|
"ignore": "5.3.0",
|
|
60
60
|
"indent-string": "4.0.0",
|
|
61
|
+
"invariant": "^2.2.2",
|
|
61
62
|
"jks-js": "1.1.0",
|
|
62
63
|
"joi": "17.11.0",
|
|
63
64
|
"jsonwebtoken": "9.0.0",
|
|
@@ -107,6 +108,7 @@
|
|
|
107
108
|
"@types/express": "4.17.15",
|
|
108
109
|
"@types/fs-extra": "11.0.4",
|
|
109
110
|
"@types/getenv": "^1.0.0",
|
|
111
|
+
"@types/invariant": "^2.2.37",
|
|
110
112
|
"@types/jsonwebtoken": "8.5.1",
|
|
111
113
|
"@types/mime": "3.0.1",
|
|
112
114
|
"@types/node-fetch": "2.6.12",
|
|
@@ -129,7 +131,7 @@
|
|
|
129
131
|
"rimraf": "3.0.2",
|
|
130
132
|
"ts-mockito": "2.6.1",
|
|
131
133
|
"ts-node": "10.9.2",
|
|
132
|
-
"typescript": "5.
|
|
134
|
+
"typescript": "5.5.4"
|
|
133
135
|
},
|
|
134
136
|
"engines": {
|
|
135
137
|
"node": ">=18.0.0"
|
|
@@ -220,7 +222,11 @@
|
|
|
220
222
|
"-v"
|
|
221
223
|
]
|
|
222
224
|
},
|
|
223
|
-
"repository":
|
|
225
|
+
"repository": {
|
|
226
|
+
"type": "git",
|
|
227
|
+
"url": "https://github.com/expo/eas-cli.git",
|
|
228
|
+
"directory": "packages/eas-cli"
|
|
229
|
+
},
|
|
224
230
|
"scripts": {
|
|
225
231
|
"postpack": "rimraf oclif.manifest.json",
|
|
226
232
|
"prepack": "yarn rebuild && node ./scripts/prepack.js",
|
|
@@ -239,9 +245,5 @@
|
|
|
239
245
|
"clean": "rimraf dist build tmp node_modules yarn-error.log",
|
|
240
246
|
"copy-new-templates": "rimraf build/commandUtils/new/templates && mkdir -p build/commandUtils/new && cp -r src/commandUtils/new/templates build/commandUtils/new"
|
|
241
247
|
},
|
|
242
|
-
"
|
|
243
|
-
"node": "20.11.0",
|
|
244
|
-
"yarn": "1.22.21"
|
|
245
|
-
},
|
|
246
|
-
"gitHead": "18ecd0844ac4acbdfb5e4576b5b95f29f9277ae9"
|
|
248
|
+
"gitHead": "3ef14b5eb75c4d7563e6108faef68e23e6f81695"
|
|
247
249
|
}
|