@expo/eas-json 7.8.4 → 9.0.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.
@@ -29,6 +29,9 @@ export interface CommonBuildProfile {
29
29
  pnpm?: string;
30
30
  bun?: string;
31
31
  yarn?: string;
32
+ /**
33
+ * @deprecated
34
+ */
32
35
  expoCli?: string;
33
36
  credentialsSource: CredentialsSource;
34
37
  distribution: DistributionType;
package/build/utils.js CHANGED
@@ -29,6 +29,15 @@ class EasJsonUtils {
29
29
  docsUrl: 'https://docs.expo.dev/build-reference/caching/#ios-dependencies',
30
30
  });
31
31
  }
32
+ if (buildProfile.expoCli) {
33
+ warnings.push({
34
+ message: [
35
+ `The "build.${profileName}.expoCli" field in eas.json is deprecated and will be removed in the future.`,
36
+ `Global Expo CLI is deprecated. Since Expo SDK 46 local Expo CLI shipped with "expo" package is used. Remove this field from eas.json.`,
37
+ `Using this field has no effect on EAS Build process.`,
38
+ ],
39
+ });
40
+ }
32
41
  warnings.push(...EasJsonUtils.getCustomPathsDeprecationWarnings(rawEasJson, profileName));
33
42
  return warnings;
34
43
  }
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@expo/eas-json",
3
3
  "description": "A library for interacting with eas.json",
4
- "version": "7.8.4",
4
+ "version": "9.0.0",
5
5
  "author": "Expo <support@expo.dev>",
6
6
  "bugs": "https://github.com/expo/eas-cli/issues",
7
7
  "dependencies": {
8
8
  "@babel/code-frame": "7.23.5",
9
- "@expo/eas-build-job": "1.0.95",
9
+ "@expo/eas-build-job": "1.0.107",
10
10
  "chalk": "4.1.2",
11
11
  "env-string": "1.0.1",
12
12
  "fs-extra": "11.2.0",
@@ -53,5 +53,5 @@
53
53
  "node": "20.11.0",
54
54
  "yarn": "1.22.21"
55
55
  },
56
- "gitHead": "2e43d4bba0ff9499d5bd36c4f8819f6b96fc5b20"
56
+ "gitHead": "4db3979ab5448f4ed808938b43764926f3156392"
57
57
  }