eas-cli 0.38.1 → 0.40.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.
Files changed (49) hide show
  1. package/README.md +31 -31
  2. package/build/build/android/configure.d.ts +3 -2
  3. package/build/build/configure.js +1 -1
  4. package/build/build/createContext.js +1 -1
  5. package/build/build/ios/configure.d.ts +3 -2
  6. package/build/build/ios/version.d.ts +1 -1
  7. package/build/build/ios/version.js +4 -1
  8. package/build/build/local.js +1 -1
  9. package/build/build/metadata.js +14 -0
  10. package/build/commandUtils/EasCommand.js +0 -2
  11. package/build/commands/branch/publish.d.ts +1 -18
  12. package/build/commands/branch/publish.js +2 -344
  13. package/build/commands/build/configure.js +1 -1
  14. package/build/commands/build/index.js +18 -11
  15. package/build/commands/channel/edit.js +1 -1
  16. package/build/commands/channel/view.js +3 -3
  17. package/build/commands/config.js +1 -1
  18. package/build/commands/credentials.js +1 -7
  19. package/build/commands/diagnostics.d.ts +1 -0
  20. package/build/commands/diagnostics.js +19 -1
  21. package/build/commands/submit.js +1 -1
  22. package/build/commands/update/configure.d.ts +8 -0
  23. package/build/commands/update/configure.js +76 -0
  24. package/build/commands/update/index.d.ts +20 -0
  25. package/build/commands/update/index.js +361 -0
  26. package/build/credentials/context.d.ts +5 -0
  27. package/build/credentials/context.js +12 -7
  28. package/build/credentials/ios/actions/AscApiKeyUtils.js +1 -1
  29. package/build/credentials/ios/appstore/ensureAppExists.js +3 -3
  30. package/build/credentials/manager/ManageAndroid.d.ts +3 -3
  31. package/build/credentials/manager/ManageAndroid.js +21 -13
  32. package/build/credentials/manager/ManageIos.d.ts +3 -3
  33. package/build/credentials/manager/ManageIos.js +23 -13
  34. package/build/credentials/manager/SelectBuildProfileFromEasJson.d.ts +2 -3
  35. package/build/credentials/manager/SelectBuildProfileFromEasJson.js +4 -7
  36. package/build/credentials/manager/SelectIosDistributionTypeGraphqlFromBuildProfile.d.ts +3 -2
  37. package/build/credentials/manager/SelectPlatform.d.ts +1 -2
  38. package/build/credentials/manager/SelectPlatform.js +3 -3
  39. package/build/project/ios/scheme.d.ts +3 -2
  40. package/build/project/ios/target.js +32 -7
  41. package/build/submit/context.js +0 -1
  42. package/build/submit/ios/AppProduce.js +3 -3
  43. package/build/submit/ios/IosSubmitCommand.js +1 -1
  44. package/build/submit/utils/wait.js +1 -1
  45. package/build/update/utils.js +1 -1
  46. package/build/utils/profiles.d.ts +2 -3
  47. package/build/utils/profiles.js +20 -7
  48. package/oclif.manifest.json +1 -1
  49. package/package.json +10 -9
@@ -10,13 +10,13 @@ class SelectBuildProfileFromEasJson {
10
10
  this.platform = platform;
11
11
  this.easJsonReader = new eas_json_1.EasJsonReader(projectDir);
12
12
  }
13
- async runAsync(ctx) {
14
- const profileName = await this.getProfileNameFromEasConfigAsync(ctx);
15
- const easConfig = await this.easJsonReader.readBuildProfileAsync(this.platform, profileName);
13
+ async runAsync() {
14
+ const profileName = await this.getProfileNameFromEasConfigAsync();
15
+ const easConfig = await this.easJsonReader.getBuildProfileAsync(this.platform, profileName);
16
16
  log_1.default.succeed(`Using build profile: ${profileName}`);
17
17
  return easConfig;
18
18
  }
19
- async getProfileNameFromEasConfigAsync(ctx) {
19
+ async getProfileNameFromEasConfigAsync() {
20
20
  const buildProfileNames = await this.easJsonReader.getBuildProfileNamesAsync();
21
21
  if (buildProfileNames.length === 0) {
22
22
  throw new Error('You need at least one iOS build profile declared in eas.json. Go to https://docs.expo.dev/build/eas-json/ for more details');
@@ -24,9 +24,6 @@ class SelectBuildProfileFromEasJson {
24
24
  else if (buildProfileNames.length === 1) {
25
25
  return buildProfileNames[0];
26
26
  }
27
- if (ctx.nonInteractive) {
28
- throw new Error('You have multiple build profiles. Please run this command in interactive mode.');
29
- }
30
27
  const { profileName } = await (0, prompts_1.promptAsync)({
31
28
  type: 'select',
32
29
  name: 'profileName',
@@ -1,9 +1,10 @@
1
- import { IosBuildProfile } from '@expo/eas-json';
1
+ import { Platform } from '@expo/eas-build-job';
2
+ import { BuildProfile } from '@expo/eas-json';
2
3
  import { IosDistributionType as IosDistributionTypeGraphql } from '../../graphql/generated';
3
4
  import { CredentialsContext } from '../context';
4
5
  export declare class SelectIosDistributionTypeGraphqlFromBuildProfile {
5
6
  private buildProfile;
6
- constructor(buildProfile: IosBuildProfile);
7
+ constructor(buildProfile: BuildProfile<Platform.IOS>);
7
8
  runAsync(ctx: CredentialsContext): Promise<IosDistributionTypeGraphql>;
8
9
  resolveInternalDistributionAsync(ctx: CredentialsContext): Promise<IosDistributionTypeGraphql>;
9
10
  }
@@ -1,4 +1,3 @@
1
- import { CredentialsContext } from '../context';
2
1
  export declare class SelectPlatform {
3
- runAsync(ctx: CredentialsContext): Promise<void>;
2
+ runAsync(): Promise<void>;
4
3
  }
@@ -5,7 +5,7 @@ const prompts_1 = require("../../prompts");
5
5
  const ManageAndroid_1 = require("./ManageAndroid");
6
6
  const ManageIos_1 = require("./ManageIos");
7
7
  class SelectPlatform {
8
- async runAsync(ctx) {
8
+ async runAsync() {
9
9
  const { platform } = await (0, prompts_1.promptAsync)({
10
10
  type: 'select',
11
11
  name: 'platform',
@@ -16,9 +16,9 @@ class SelectPlatform {
16
16
  ],
17
17
  });
18
18
  if (platform === 'ios') {
19
- return await new ManageIos_1.ManageIos(new SelectPlatform()).runAsync(ctx);
19
+ return await new ManageIos_1.ManageIos(new SelectPlatform(), process.cwd()).runAsync();
20
20
  }
21
- return await new ManageAndroid_1.ManageAndroid(new SelectPlatform()).runAsync(ctx);
21
+ return await new ManageAndroid_1.ManageAndroid(new SelectPlatform(), process.cwd()).runAsync();
22
22
  }
23
23
  }
24
24
  exports.SelectPlatform = SelectPlatform;
@@ -1,5 +1,6 @@
1
1
  import { ExpoConfig } from '@expo/config';
2
- import { IosBuildProfile } from '@expo/eas-json';
2
+ import { Platform } from '@expo/eas-build-job';
3
+ import { BuildProfile } from '@expo/eas-json';
3
4
  export interface XcodeBuildContext {
4
5
  buildScheme: string;
5
6
  buildConfiguration?: string;
@@ -8,7 +9,7 @@ export declare function resolveXcodeBuildContextAsync({ exp, projectDir, nonInte
8
9
  exp: ExpoConfig;
9
10
  projectDir: string;
10
11
  nonInteractive: boolean;
11
- }, buildProfile: IosBuildProfile): Promise<XcodeBuildContext>;
12
+ }, buildProfile: BuildProfile<Platform.IOS>): Promise<XcodeBuildContext>;
12
13
  export declare function selectSchemeAsync({ projectDir, nonInteractive, }: {
13
14
  projectDir: string;
14
15
  nonInteractive?: boolean;
@@ -17,22 +17,47 @@ async function resolveTargetsAsync({ exp, projectDir }, { buildConfiguration, bu
17
17
  bundleIdentifier,
18
18
  buildConfiguration,
19
19
  });
20
- if (applicationTarget.dependencies && applicationTarget.dependencies.length > 0) {
21
- for (const dependency of applicationTarget.dependencies) {
20
+ const dependencies = await resolveDependenciesAsync({
21
+ exp,
22
+ projectDir,
23
+ buildConfiguration,
24
+ target: applicationTarget,
25
+ bundleIdentifier,
26
+ });
27
+ if (dependencies.length > 0) {
28
+ result.push(...dependencies);
29
+ }
30
+ return result;
31
+ }
32
+ exports.resolveTargetsAsync = resolveTargetsAsync;
33
+ async function resolveDependenciesAsync({ exp, projectDir, buildConfiguration, target, bundleIdentifier, }) {
34
+ const result = [];
35
+ if (target.dependencies && target.dependencies.length > 0) {
36
+ for (const dependency of target.dependencies) {
37
+ const dependencyBundleIdentifier = await (0, bundleIdentifier_1.getBundleIdentifierAsync)(projectDir, exp, {
38
+ targetName: dependency.name,
39
+ buildConfiguration,
40
+ });
22
41
  result.push({
23
42
  targetName: dependency.name,
24
43
  buildConfiguration,
25
- bundleIdentifier: await (0, bundleIdentifier_1.getBundleIdentifierAsync)(projectDir, exp, {
26
- targetName: dependency.name,
27
- buildConfiguration,
28
- }),
44
+ bundleIdentifier: dependencyBundleIdentifier,
29
45
  parentBundleIdentifier: bundleIdentifier,
30
46
  });
47
+ const dependencyDependencies = await resolveDependenciesAsync({
48
+ exp,
49
+ projectDir,
50
+ buildConfiguration,
51
+ target: dependency,
52
+ bundleIdentifier: dependencyBundleIdentifier,
53
+ });
54
+ if (dependencyDependencies.length > 0) {
55
+ result.push(...dependencyDependencies);
56
+ }
31
57
  }
32
58
  }
33
59
  return result;
34
60
  }
35
- exports.resolveTargetsAsync = resolveTargetsAsync;
36
61
  async function readApplicationTargetForSchemeAsync(projectDir, scheme) {
37
62
  const workflow = await (0, workflow_1.resolveWorkflowAsync)(projectDir, eas_build_job_1.Platform.IOS);
38
63
  if (workflow === eas_build_job_1.Workflow.GENERIC) {
@@ -25,7 +25,6 @@ async function createSubmissionContextAsync(params) {
25
25
  tracking_id: (0, uuid_1.v4)(),
26
26
  platform: params.platform,
27
27
  ...(accountId && { account_id: accountId }),
28
- account_name: accountName,
29
28
  project_id: params.projectId,
30
29
  };
31
30
  events_1.Analytics.logEvent(events_1.SubmissionEvent.SUBMIT_COMMAND, trackingCtx);
@@ -11,13 +11,13 @@ const bundleIdentifier_1 = require("../../project/ios/bundleIdentifier");
11
11
  const prompts_1 = require("../../prompts");
12
12
  const language_1 = require("./utils/language");
13
13
  async function ensureAppStoreConnectAppExistsAsync(ctx) {
14
- var _a;
14
+ var _a, _b, _c;
15
15
  const { exp } = ctx;
16
16
  const { appName, language } = ctx.profile;
17
17
  const options = {
18
18
  ...ctx.profile,
19
- bundleIdentifier: await (0, bundleIdentifier_1.getBundleIdentifierAsync)(ctx.projectDir, exp),
20
- appName: (_a = appName !== null && appName !== void 0 ? appName : exp.name) !== null && _a !== void 0 ? _a : (await promptForAppNameAsync()),
19
+ bundleIdentifier: (_b = (_a = ctx.applicationIdentifierOverride) !== null && _a !== void 0 ? _a : ctx.profile.bundleIdentifier) !== null && _b !== void 0 ? _b : (await (0, bundleIdentifier_1.getBundleIdentifierAsync)(ctx.projectDir, exp)),
20
+ appName: (_c = appName !== null && appName !== void 0 ? appName : exp.name) !== null && _c !== void 0 ? _c : (await promptForAppNameAsync()),
21
21
  language: (0, language_1.sanitizeLanguage)(language),
22
22
  };
23
23
  return await createAppStoreConnectAppAsync(ctx, options);
@@ -159,7 +159,7 @@ class IosSubmitCommand {
159
159
  return (0, results_1.result)(ascAppId);
160
160
  }
161
161
  else if (this.ctx.nonInteractive) {
162
- return (0, results_1.result)(new Error('Set ascAppId in the submit profile (eas.json).'));
162
+ return (0, results_1.result)(new Error('Set ascAppId in the submit profile (eas.json) or re-run this command in interactive mode.'));
163
163
  }
164
164
  else {
165
165
  log_1.default.log((0, wrap_ansi_1.default)(`Ensuring your app exists on App Store Connect. This step can be skipped by providing ${chalk_1.default.bold(`ascAppId`)} in the submit profile. ${(0, log_1.learnMore)('https://expo.fyi/asc-app-id')}`, process.stdout.columns || 80));
@@ -10,7 +10,7 @@ const ora_1 = require("../../ora");
10
10
  const promise_1 = require("../../utils/promise");
11
11
  const APP_STORE_NAMES = {
12
12
  [generated_1.AppPlatform.Android]: 'Google Play Store',
13
- [generated_1.AppPlatform.Ios]: 'Apple App Store',
13
+ [generated_1.AppPlatform.Ios]: 'Apple App Store Connect',
14
14
  };
15
15
  const CHECK_TIMEOUT_MS = 3600000;
16
16
  const CHECK_INTERVAL_MS = 5000;
@@ -19,7 +19,7 @@ function getPlatformsForGroup({ group, updates, }) {
19
19
  return groupedUpdates[group]
20
20
  .map(update => update.platform)
21
21
  .sort()
22
- .join(',');
22
+ .join(', ');
23
23
  }
24
24
  exports.getPlatformsForGroup = getPlatformsForGroup;
25
25
  function formatUpdate(update) {
@@ -1,6 +1,5 @@
1
1
  import { Platform } from '@expo/eas-build-job';
2
- import { BuildProfile, SubmitProfile } from '@expo/eas-json';
3
- declare type ProfileType = 'build' | 'submit';
2
+ import { BuildProfile, ProfileType, SubmitProfile } from '@expo/eas-json';
4
3
  declare type EasProfile<T extends ProfileType> = T extends 'build' ? BuildProfile<Platform> : SubmitProfile<Platform>;
5
4
  export declare type ProfileData<T extends ProfileType> = {
6
5
  profile: EasProfile<T>;
@@ -10,7 +9,7 @@ export declare type ProfileData<T extends ProfileType> = {
10
9
  export declare function getProfilesAsync<T extends ProfileType>({ projectDir, platforms, profileName: profileNameArg, type, }: {
11
10
  projectDir: string;
12
11
  platforms: Platform[];
13
- profileName?: string | null;
12
+ profileName?: string;
14
13
  type: T;
15
14
  }): Promise<ProfileData<T>[]>;
16
15
  export {};
@@ -10,23 +10,28 @@ async function getProfilesAsync({ projectDir, platforms, profileName: profileNam
10
10
  let profileName = profileNameArg;
11
11
  if (!profileName) {
12
12
  try {
13
- profile = await readProfileAsync({ projectDir, platform, type, profileName: 'production' });
14
13
  profileName = 'production';
14
+ profile = await readProfileAsync({ projectDir, platform, type, profileName });
15
15
  }
16
16
  catch (errorOuter) {
17
- if (errorOuter instanceof eas_json_1.errors.InvalidEasJsonError) {
17
+ if (!(errorOuter instanceof eas_json_1.errors.MissingProfileError)) {
18
18
  throw errorOuter;
19
19
  }
20
20
  try {
21
- profile = await readProfileAsync({ projectDir, platform, type, profileName: 'release' });
22
21
  profileName = 'release';
22
+ profile = await readProfileAsync({ projectDir, platform, type, profileName });
23
23
  log_1.default.warn('The default profile changed from "release" to "production". We detected that you still have a "release" build profile, so we are using it. Update eas.json to have a profile named "production" under the `build` key, or specify which profile you\'d like to use with the --profile flag. This fallback behavior will be removed in the next major version of EAS CLI.');
24
24
  }
25
25
  catch (errorInner) {
26
- if (errorInner instanceof eas_json_1.errors.InvalidEasJsonError) {
26
+ if (!(errorInner instanceof eas_json_1.errors.MissingProfileError)) {
27
27
  throw errorInner;
28
28
  }
29
- throw new Error(`There is no ${type} profile named "production" in eas.json`);
29
+ const defaultProfile = getDefaultProfile({ platform, type });
30
+ if (!defaultProfile) {
31
+ throw errorInner;
32
+ }
33
+ profileName = '__default__';
34
+ profile = defaultProfile;
30
35
  }
31
36
  }
32
37
  }
@@ -45,9 +50,17 @@ exports.getProfilesAsync = getProfilesAsync;
45
50
  async function readProfileAsync({ projectDir, platform, type, profileName, }) {
46
51
  const easJsonReader = new eas_json_1.EasJsonReader(projectDir);
47
52
  if (type === 'build') {
48
- return (await easJsonReader.readBuildProfileAsync(platform, profileName));
53
+ return (await easJsonReader.getBuildProfileAsync(platform, profileName));
54
+ }
55
+ else {
56
+ return (await easJsonReader.getSubmitProfileAsync(platform, profileName));
57
+ }
58
+ }
59
+ function getDefaultProfile({ platform, type, }) {
60
+ if (type === 'build') {
61
+ return null;
49
62
  }
50
63
  else {
51
- return (await easJsonReader.readSubmitProfileAsync(platform, profileName));
64
+ return (0, eas_json_1.getDefaultSubmitProfile)(platform);
52
65
  }
53
66
  }
@@ -1 +1 @@
1
- {"version":"0.38.1","commands":{"analytics":{"id":"analytics","description":"view or change analytics settings","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"STATUS","options":["on","off"]}]},"config":{"id":"config","description":"show the eas.json config","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios)","options":["android","ios"]},"profile":{"name":"profile","type":"option"}},"args":[]},"credentials":{"id":"credentials","description":"manage your credentials","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"diagnostics":{"id":"diagnostics","description":"log environment info to the console","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"submit":{"id":"submit","description":"submit build archive to app store\nSee how to configure submits with eas.json: https://docs.expo.dev/submit/eas-json/","pluginName":"eas-cli","pluginType":"core","aliases":["build:submit"],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios|all)","options":["android","ios","all"]},"profile":{"name":"profile","type":"option","description":"Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json."},"latest":{"name":"latest","type":"boolean","description":"Submit the latest build for specified platform","allowNo":false},"id":{"name":"id","type":"option","description":"ID of the build to submit"},"path":{"name":"path","type":"option","description":"Path to the .apk/.aab/.ipa file"},"url":{"name":"url","type":"option","description":"App archive url"},"verbose":{"name":"verbose","type":"boolean","description":"Always print logs from Submission Service","allowNo":false},"wait":{"name":"wait","type":"boolean","description":"Wait for submission to complete","allowNo":true},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run command in non-interactive mode","allowNo":false}},"args":[]},"account:login":{"id":"account:login","description":"log in with your Expo account","pluginName":"eas-cli","pluginType":"core","aliases":["login"],"flags":{},"args":[]},"account:logout":{"id":"account:logout","description":"log out","pluginName":"eas-cli","pluginType":"core","aliases":["logout"],"flags":{},"args":[]},"account:view":{"id":"account:view","description":"show the username you are logged in as","pluginName":"eas-cli","pluginType":"core","aliases":["whoami"],"flags":{},"args":[]},"branch:create":{"id":"branch:create","description":"Create a branch on the current project.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"return a json with the new branch ID and name.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to create","required":false}]},"branch:delete":{"id":"branch:delete","description":"Republish an update group","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"return JSON with the edited branch's ID and name.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to delete","required":false}]},"branch:list":{"id":"branch:list","description":"List all branches on this project.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"return output as JSON","allowNo":false}},"args":[]},"branch:publish":{"id":"branch:publish","description":"Publish an update group to a branch.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"message":{"name":"message","type":"option","description":"short message describing the updates.","required":false},"republish":{"name":"republish","type":"boolean","description":"republish an update group","allowNo":false},"group":{"name":"group","type":"option","description":"update group to republish"},"input-dir":{"name":"input-dir","type":"option","description":"location of the bundle","required":false,"default":"dist"},"skip-bundler":{"name":"skip-bundler","type":"boolean","description":"skip running Expo CLI to bundle the app before publishing","allowNo":false},"platform":{"name":"platform","type":"option","char":"p","description":"only publish to a single platform","required":false,"helpValue":"(android|ios|all)","options":["android","ios","all"],"default":"all"},"json":{"name":"json","type":"boolean","description":"return a json with the new update group.","allowNo":false},"auto":{"name":"auto","type":"boolean","description":"use the current git branch and commit message for the EAS branch and update message","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to publish on"}]},"branch:rename":{"id":"branch:rename","description":"Rename a branch.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"from":{"name":"from","type":"option","description":"current name of the branch.","required":false},"to":{"name":"to","type":"option","description":"new name of the branch.","required":false},"json":{"name":"json","type":"boolean","description":"return a json with the edited branch's ID and name.","allowNo":false}},"args":[]},"branch:view":{"id":"branch:view","description":"View a branch.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"return a json with the branch's ID name and recent update groups.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to view","required":false}]},"build:cancel":{"id":"build:cancel","description":"Cancel a build.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"BUILD_ID"}]},"build:configure":{"id":"build:configure","description":"Configure the project to support EAS Build.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","description":"Platform to configure","helpValue":"(android|ios|all)","options":["android","ios","all"]}},"args":[]},"build":{"id":"build","description":"start a build","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios|all)","options":["android","ios","all"]},"skip-credentials-check":{"name":"skip-credentials-check","type":"boolean","hidden":true,"allowNo":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr","allowNo":false},"skip-project-configuration":{"name":"skip-project-configuration","type":"boolean","description":"Skip project configuration","allowNo":false},"profile":{"name":"profile","type":"option","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME"},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run command in non-interactive mode","allowNo":false},"local":{"name":"local","type":"boolean","description":"Run build locally [experimental]","allowNo":false},"wait":{"name":"wait","type":"boolean","description":"Wait for build(s) to complete","allowNo":true},"clear-cache":{"name":"clear-cache","type":"boolean","description":"Clear cache before the build","allowNo":false},"auto-submit":{"name":"auto-submit","type":"boolean","description":"Submit on build complete using the submit profile with the same name as the build profile","allowNo":false},"auto-submit-with-profile":{"name":"auto-submit-with-profile","type":"option","description":"Submit on build complete using the submit profile with provided name","helpValue":"PROFILE_NAME"}},"args":[]},"build:list":{"id":"build:list","description":"list all builds for your project","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","helpValue":"(all|android|ios)","options":["all","android","ios"]},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr","allowNo":false},"status":{"name":"status","type":"option","helpValue":"(new|in-queue|in-progress|errored|finished|canceled)","options":["new","in-queue","in-progress","errored","finished","canceled"]},"distribution":{"name":"distribution","type":"option","helpValue":"(store|internal|simulator)","options":["store","internal","simulator"]},"channel":{"name":"channel","type":"option"},"appVersion":{"name":"appVersion","type":"option"},"appBuildVersion":{"name":"appBuildVersion","type":"option"},"sdkVersion":{"name":"sdkVersion","type":"option"},"runtimeVersion":{"name":"runtimeVersion","type":"option"},"appIdentifier":{"name":"appIdentifier","type":"option"},"buildProfile":{"name":"buildProfile","type":"option"},"gitCommitHash":{"name":"gitCommitHash","type":"option"},"limit":{"name":"limit","type":"option"}},"args":[]},"build:view":{"id":"build:view","description":"view a build for your project","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr","allowNo":false}},"args":[{"name":"BUILD_ID"}]},"channel:create":{"id":"channel:create","description":"Create a channel on the current project.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the new channel ID, name and branch mapping.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to create","required":false}]},"channel:edit":{"id":"channel:edit","description":"Point a channel at a new branch.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"Name of the branch to point to"},"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the channel ID, name and branch mapping.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to edit","required":false}]},"channel:list":{"id":"channel:list","description":"List all channels on the current project.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the channel ID, name and branch mapping.","allowNo":false}},"args":[]},"channel:rollout":{"id":"channel:rollout","description":"Rollout a new branch out to a channel incrementally.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"branch to rollout","required":false},"percent":{"name":"percent","type":"option","description":"percent of traffic to redirect to the new branch","required":false},"end":{"name":"end","type":"boolean","description":"end the rollout","allowNo":false},"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the new channel ID, name and branch mapping","allowNo":false}},"args":[{"name":"channel","description":"rollout that the channel is on","required":true}]},"channel:view":{"id":"channel:view","description":"View a channel on the current project.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the channel ID, name and branch mapping.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to view","required":false}]},"device:create":{"id":"device:create","description":"register new Apple Devices to use for internal distribution","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"device:list":{"id":"device:list","description":"list all registered devices for your account","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"apple-team-id":{"name":"apple-team-id","type":"option"}},"args":[]},"device:view":{"id":"device:view","description":"view a device for your project","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"UDID"}]},"project:info":{"id":"project:info","description":"information about the current project","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"project:init":{"id":"project:init","description":"create or link an EAS project","pluginName":"eas-cli","pluginType":"core","aliases":["init"],"flags":{},"args":[]},"secret:create":{"id":"secret:create","description":"Create an environment secret on the current project or owner account.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"scope":{"name":"scope","type":"option","description":"Scope for the secret","helpValue":"(account|project)","options":["account","project"],"default":"project"},"name":{"name":"name","type":"option","description":"Name of the secret"},"value":{"name":"value","type":"option","description":"Value of the secret"},"force":{"name":"force","type":"boolean","description":"Delete and recreate existing secrets","allowNo":false}},"args":[]},"secret:delete":{"id":"secret:delete","description":"Delete an environment secret by ID.\nUnsure where to find the secret's ID? Run eas secret:list","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"id":{"name":"id","type":"option","description":"ID of the secret to delete"}},"args":[]},"secret:list":{"id":"secret:list","description":"Lists environment secrets available for your current app","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"update:delete":{"id":"update:delete","description":"Delete all the updates in an update Group.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Return a json with the group ID of the deleted updates.","allowNo":false}},"args":[{"name":"groupId","description":"The ID of an update group to delete.","required":true}]},"update:view":{"id":"update:view","description":"Update group details.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Return a json with the updates belonging to the group.","allowNo":false}},"args":[{"name":"groupId","description":"The ID of an update group.","required":true}]},"webhook:create":{"id":"webhook:create","description":"Create a webhook on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","options":["BUILD","SUBMIT"]},"url":{"name":"url","type":"option","description":"Webhook URL"},"secret":{"name":"secret","type":"option","description":"Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header."}},"args":[]},"webhook:delete":{"id":"webhook:delete","description":"Delete a webhook on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"ID","description":"ID of the webhook to delete","required":false}]},"webhook:list":{"id":"webhook:list","description":"List webhooks on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","options":["BUILD","SUBMIT"]}},"args":[]},"webhook:update":{"id":"webhook:update","description":"Create a webhook on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"id":{"name":"id","type":"option","description":"Webhook ID","required":true},"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","options":["BUILD","SUBMIT"]},"url":{"name":"url","type":"option","description":"Webhook URL"},"secret":{"name":"secret","type":"option","description":"Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header."}},"args":[]},"webhook:view":{"id":"webhook:view","description":"View a webhook on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"ID","description":"ID of the webhook to view","required":true}]}}}
1
+ {"version":"0.40.0","commands":{"analytics":{"id":"analytics","description":"view or change analytics settings","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"STATUS","options":["on","off"]}]},"config":{"id":"config","description":"show the eas.json config","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios)","options":["android","ios"]},"profile":{"name":"profile","type":"option"}},"args":[]},"credentials":{"id":"credentials","description":"manage your credentials","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"diagnostics":{"id":"diagnostics","description":"log environment info to the console","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"submit":{"id":"submit","description":"Submit build archive to App Store Connect\nSee how to configure submits with eas.json: https://docs.expo.dev/submit/eas-json/","pluginName":"eas-cli","pluginType":"core","aliases":["build:submit"],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios|all)","options":["android","ios","all"]},"profile":{"name":"profile","type":"option","description":"Name of the submit profile from eas.json. Defaults to \"production\" if defined in eas.json."},"latest":{"name":"latest","type":"boolean","description":"Submit the latest build for specified platform","allowNo":false},"id":{"name":"id","type":"option","description":"ID of the build to submit"},"path":{"name":"path","type":"option","description":"Path to the .apk/.aab/.ipa file"},"url":{"name":"url","type":"option","description":"App archive url"},"verbose":{"name":"verbose","type":"boolean","description":"Always print logs from Submission Service","allowNo":false},"wait":{"name":"wait","type":"boolean","description":"Wait for submission to complete","allowNo":true},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run command in non-interactive mode","allowNo":false}},"args":[]},"account:login":{"id":"account:login","description":"log in with your Expo account","pluginName":"eas-cli","pluginType":"core","aliases":["login"],"flags":{},"args":[]},"account:logout":{"id":"account:logout","description":"log out","pluginName":"eas-cli","pluginType":"core","aliases":["logout"],"flags":{},"args":[]},"account:view":{"id":"account:view","description":"show the username you are logged in as","pluginName":"eas-cli","pluginType":"core","aliases":["whoami"],"flags":{},"args":[]},"branch:create":{"id":"branch:create","description":"Create a branch on the current project.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"return a json with the new branch ID and name.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to create","required":false}]},"branch:delete":{"id":"branch:delete","description":"Republish an update group","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"return JSON with the edited branch's ID and name.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to delete","required":false}]},"branch:list":{"id":"branch:list","description":"List all branches on this project.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"return output as JSON","allowNo":false}},"args":[]},"branch:publish":{"id":"branch:publish","description":"deprecated, use \"eas update\"","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{},"args":[]},"branch:rename":{"id":"branch:rename","description":"Rename a branch.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"from":{"name":"from","type":"option","description":"current name of the branch.","required":false},"to":{"name":"to","type":"option","description":"new name of the branch.","required":false},"json":{"name":"json","type":"boolean","description":"return a json with the edited branch's ID and name.","allowNo":false}},"args":[]},"branch:view":{"id":"branch:view","description":"View a branch.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"return a json with the branch's ID name and recent update groups.","allowNo":false}},"args":[{"name":"name","description":"Name of the branch to view","required":false}]},"build:cancel":{"id":"build:cancel","description":"Cancel a build.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"BUILD_ID"}]},"build:configure":{"id":"build:configure","description":"Configure the project to support EAS Build.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","description":"Platform to configure","helpValue":"(android|ios|all)","options":["android","ios","all"]}},"args":[]},"build":{"id":"build","description":"Start a build","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","char":"p","helpValue":"(android|ios|all)","options":["android","ios","all"]},"skip-credentials-check":{"name":"skip-credentials-check","type":"boolean","hidden":true,"allowNo":false},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr","allowNo":false},"skip-project-configuration":{"name":"skip-project-configuration","type":"boolean","description":"Skip project configuration","allowNo":false},"profile":{"name":"profile","type":"option","description":"Name of the build profile from eas.json. Defaults to \"production\" if defined in eas.json.","helpValue":"PROFILE_NAME"},"non-interactive":{"name":"non-interactive","type":"boolean","description":"Run command in non-interactive mode","allowNo":false},"local":{"name":"local","type":"boolean","description":"Run build locally [experimental]","allowNo":false},"wait":{"name":"wait","type":"boolean","description":"Wait for build(s) to complete","allowNo":true},"clear-cache":{"name":"clear-cache","type":"boolean","description":"Clear cache before the build","allowNo":false},"auto-submit":{"name":"auto-submit","type":"boolean","description":"Submit on build complete using the submit profile with the same name as the build profile","allowNo":false},"auto-submit-with-profile":{"name":"auto-submit-with-profile","type":"option","description":"Submit on build complete using the submit profile with provided name","helpValue":"PROFILE_NAME"}},"args":[]},"build:list":{"id":"build:list","description":"list all builds for your project","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"platform":{"name":"platform","type":"option","helpValue":"(all|android|ios)","options":["all","android","ios"]},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr","allowNo":false},"status":{"name":"status","type":"option","helpValue":"(new|in-queue|in-progress|errored|finished|canceled)","options":["new","in-queue","in-progress","errored","finished","canceled"]},"distribution":{"name":"distribution","type":"option","helpValue":"(store|internal|simulator)","options":["store","internal","simulator"]},"channel":{"name":"channel","type":"option"},"appVersion":{"name":"appVersion","type":"option"},"appBuildVersion":{"name":"appBuildVersion","type":"option"},"sdkVersion":{"name":"sdkVersion","type":"option"},"runtimeVersion":{"name":"runtimeVersion","type":"option"},"appIdentifier":{"name":"appIdentifier","type":"option"},"buildProfile":{"name":"buildProfile","type":"option"},"gitCommitHash":{"name":"gitCommitHash","type":"option"},"limit":{"name":"limit","type":"option"}},"args":[]},"build:view":{"id":"build:view","description":"view a build for your project","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr","allowNo":false}},"args":[{"name":"BUILD_ID"}]},"channel:create":{"id":"channel:create","description":"Create a channel on the current project.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the new channel ID, name and branch mapping.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to create","required":false}]},"channel:edit":{"id":"channel:edit","description":"Point a channel at a new branch.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"Name of the branch to point to"},"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the channel ID, name and branch mapping.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to edit","required":false}]},"channel:list":{"id":"channel:list","description":"List all channels on the current project.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the channel ID, name and branch mapping.","allowNo":false}},"args":[]},"channel:rollout":{"id":"channel:rollout","description":"Rollout a new branch out to a channel incrementally.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"branch to rollout","required":false},"percent":{"name":"percent","type":"option","description":"percent of traffic to redirect to the new branch","required":false},"end":{"name":"end","type":"boolean","description":"end the rollout","allowNo":false},"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the new channel ID, name and branch mapping","allowNo":false}},"args":[{"name":"channel","description":"rollout that the channel is on","required":true}]},"channel:view":{"id":"channel:view","description":"View a channel on the current project.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"print output as a JSON object with the channel ID, name and branch mapping.","allowNo":false}},"args":[{"name":"name","description":"Name of the channel to view","required":false}]},"device:create":{"id":"device:create","description":"register new Apple Devices to use for internal distribution","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"device:list":{"id":"device:list","description":"list all registered devices for your account","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"apple-team-id":{"name":"apple-team-id","type":"option"}},"args":[]},"device:view":{"id":"device:view","description":"view a device for your project","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"UDID"}]},"project:info":{"id":"project:info","description":"information about the current project","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"project:init":{"id":"project:init","description":"create or link an EAS project","pluginName":"eas-cli","pluginType":"core","aliases":["init"],"flags":{},"args":[]},"secret:create":{"id":"secret:create","description":"Create an environment secret on the current project or owner account.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"scope":{"name":"scope","type":"option","description":"Scope for the secret","helpValue":"(account|project)","options":["account","project"],"default":"project"},"name":{"name":"name","type":"option","description":"Name of the secret"},"value":{"name":"value","type":"option","description":"Value of the secret"},"force":{"name":"force","type":"boolean","description":"Delete and recreate existing secrets","allowNo":false}},"args":[]},"secret:delete":{"id":"secret:delete","description":"Delete an environment secret by ID.\nUnsure where to find the secret's ID? Run eas secret:list","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"id":{"name":"id","type":"option","description":"ID of the secret to delete"}},"args":[]},"secret:list":{"id":"secret:list","description":"Lists environment secrets available for your current app","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[]},"update:configure":{"id":"update:configure","description":"Configure the project to support EAS Update.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{},"args":[]},"update:delete":{"id":"update:delete","description":"Delete all the updates in an update Group.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Return a json with the group ID of the deleted updates.","allowNo":false}},"args":[{"name":"groupId","description":"The ID of an update group to delete.","required":true}]},"update":{"id":"update","description":"Publish an update group.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"branch":{"name":"branch","type":"option","description":"Branch to publish the update group on","required":false},"message":{"name":"message","type":"option","description":"A short message describing the update","required":false},"republish":{"name":"republish","type":"boolean","description":"Republish an update group","allowNo":false},"group":{"name":"group","type":"option","description":"Update group to republish"},"input-dir":{"name":"input-dir","type":"option","description":"Location of the bundle","required":false,"default":"dist"},"skip-bundler":{"name":"skip-bundler","type":"boolean","description":"Skip running Expo CLI to bundle the app before publishing","allowNo":false},"platform":{"name":"platform","type":"option","char":"p","required":false,"helpValue":"(android|ios|all)","options":["android","ios","all"],"default":"all"},"json":{"name":"json","type":"boolean","description":"Enable JSON output, non-JSON messages will be printed to stderr","allowNo":false},"auto":{"name":"auto","type":"boolean","description":"Use the current git branch and commit message for the EAS branch and update message","allowNo":false}},"args":[]},"update:view":{"id":"update:view","description":"Update group details.","pluginName":"eas-cli","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Return a json with the updates belonging to the group.","allowNo":false}},"args":[{"name":"groupId","description":"The ID of an update group.","required":true}]},"webhook:create":{"id":"webhook:create","description":"Create a webhook on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","options":["BUILD","SUBMIT"]},"url":{"name":"url","type":"option","description":"Webhook URL"},"secret":{"name":"secret","type":"option","description":"Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header."}},"args":[]},"webhook:delete":{"id":"webhook:delete","description":"Delete a webhook on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"ID","description":"ID of the webhook to delete","required":false}]},"webhook:list":{"id":"webhook:list","description":"List webhooks on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","options":["BUILD","SUBMIT"]}},"args":[]},"webhook:update":{"id":"webhook:update","description":"Create a webhook on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{"id":{"name":"id","type":"option","description":"Webhook ID","required":true},"event":{"name":"event","type":"option","description":"Event type that triggers the webhook","helpValue":"(BUILD|SUBMIT)","options":["BUILD","SUBMIT"]},"url":{"name":"url","type":"option","description":"Webhook URL"},"secret":{"name":"secret","type":"option","description":"Secret used to create a hash signature of the request payload, provided in the 'Expo-Signature' header."}},"args":[]},"webhook:view":{"id":"webhook:view","description":"View a webhook on the current project.","pluginName":"eas-cli","pluginType":"core","aliases":[],"flags":{},"args":[{"name":"ID","description":"ID of the webhook to view","required":true}]}}}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "eas-cli",
3
3
  "description": "EAS command line tool",
4
- "version": "0.38.1",
4
+ "version": "0.40.0",
5
5
  "author": "Expo <support@expo.dev>",
6
6
  "bin": {
7
7
  "eas": "./bin/run"
@@ -9,15 +9,15 @@
9
9
  "bugs": "https://github.com/expo/eas-cli/issues",
10
10
  "dependencies": {
11
11
  "@expo/apple-utils": "0.0.0-alpha.26",
12
- "@expo/config": "6.0.8",
13
- "@expo/config-plugins": "4.0.8",
14
- "@expo/eas-build-job": "0.2.57",
15
- "@expo/eas-json": "^0.38.0",
12
+ "@expo/config": "6.0.11",
13
+ "@expo/config-plugins": "4.0.11",
14
+ "@expo/eas-build-job": "0.2.61",
15
+ "@expo/eas-json": "^0.40.0",
16
16
  "@expo/json-file": "8.2.34",
17
17
  "@expo/pkcs12": "0.0.6",
18
18
  "@expo/plist": "0.0.16",
19
- "@expo/plugin-warn-if-update-available": "1.7.0",
20
- "@expo/prebuild-config": "3.0.8",
19
+ "@expo/plugin-warn-if-update-available": "1.7.1",
20
+ "@expo/prebuild-config": "3.0.11",
21
21
  "@expo/results": "1.0.0",
22
22
  "@expo/rudder-sdk-node": "1.1.1",
23
23
  "@expo/spawn-async": "1.5.0",
@@ -95,7 +95,8 @@
95
95
  "mockdate": "^3.0.2",
96
96
  "nock": "^13.0.5",
97
97
  "tempy": "0.7.0",
98
- "ts-deepmerge": "1.0.8"
98
+ "ts-deepmerge": "1.0.8",
99
+ "typescript": "4.5.2"
99
100
  },
100
101
  "engines": {
101
102
  "node": ">=12.0.0"
@@ -178,5 +179,5 @@
178
179
  "generate-graphql-code": "graphql-codegen --config graphql-codegen.yml",
179
180
  "clean": "rm -rf dist build node_modules yarn-error.log"
180
181
  },
181
- "gitHead": "71d48c3cf25ecb811823442790b7172537beca0c"
182
+ "gitHead": "ddfe60a7b062736ffd724c59bb09832dd9d8df03"
182
183
  }