eas-cli 0.53.1 → 0.54.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 (36) hide show
  1. package/README.md +130 -42
  2. package/build/build/runBuildAndSubmit.js +4 -2
  3. package/build/build/utils/url.d.ts +1 -0
  4. package/build/build/utils/url.js +5 -1
  5. package/build/commands/build/index.d.ts +0 -1
  6. package/build/commands/build/index.js +1 -53
  7. package/build/commands/config.js +0 -2
  8. package/build/commands/metadata/pull.d.ts +8 -0
  9. package/build/commands/metadata/pull.js +59 -0
  10. package/build/commands/metadata/push.d.ts +8 -0
  11. package/build/commands/metadata/push.js +51 -0
  12. package/build/commands/submit.js +2 -1
  13. package/build/commands/update/index.d.ts +12 -0
  14. package/build/commands/update/index.js +78 -34
  15. package/build/graphql/generated.d.ts +24 -12
  16. package/build/graphql/queries/UpdateQuery.d.ts +4 -1
  17. package/build/graphql/queries/UpdateQuery.js +8 -7
  18. package/build/metadata/apple/config/reader.js +5 -4
  19. package/build/metadata/apple/tasks/app-info.js +8 -6
  20. package/build/metadata/apple/tasks/app-version.js +16 -12
  21. package/build/metadata/context.js +7 -14
  22. package/build/metadata/download.js +9 -2
  23. package/build/metadata/errors.d.ts +2 -2
  24. package/build/metadata/errors.js +4 -2
  25. package/build/metadata/upload.js +3 -0
  26. package/build/metadata/utils/date.d.ts +1 -1
  27. package/build/project/ensureProjectExists.js +4 -1
  28. package/build/project/publish.d.ts +6 -1
  29. package/build/project/publish.js +16 -3
  30. package/build/utils/expodash/uniq.d.ts +1 -0
  31. package/build/{metadata/utils/array.js → utils/expodash/uniq.js} +2 -3
  32. package/build/utils/profiles.d.ts +3 -3
  33. package/build/utils/profiles.js +5 -93
  34. package/oclif.manifest.json +1 -1
  35. package/package.json +8 -4
  36. package/build/metadata/utils/array.d.ts +0 -1
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.53.1",
4
+ "version": "0.54.0",
5
5
  "author": "Expo <support@expo.dev>",
6
6
  "bin": {
7
7
  "eas": "./bin/run"
@@ -13,8 +13,8 @@
13
13
  "@expo/config": "6.0.23",
14
14
  "@expo/config-plugins": "4.1.4",
15
15
  "@expo/config-types": "45.0.0",
16
- "@expo/eas-build-job": "0.2.72",
17
- "@expo/eas-json": "0.53.1",
16
+ "@expo/eas-build-job": "0.2.77",
17
+ "@expo/eas-json": "0.54.0",
18
18
  "@expo/json-file": "8.2.36",
19
19
  "@expo/multipart-body-parser": "1.1.0",
20
20
  "@expo/pkcs12": "0.0.8",
@@ -61,6 +61,7 @@
61
61
  "nullthrows": "1.1.1",
62
62
  "ora": "5.1.0",
63
63
  "pkg-dir": "4.2.0",
64
+ "promise-limit": "2.7.0",
64
65
  "prompts": "2.4.2",
65
66
  "qrcode-terminal": "0.12.0",
66
67
  "resolve-from": "5.0.0",
@@ -143,6 +144,9 @@
143
144
  "device": {
144
145
  "description": "manage Apple devices for Internal Distribution"
145
146
  },
147
+ "metadata": {
148
+ "description": "manage store configuration"
149
+ },
146
150
  "project": {
147
151
  "description": "manage project"
148
152
  },
@@ -196,5 +200,5 @@
196
200
  "generate-graphql-code": "graphql-codegen --config graphql-codegen.yml",
197
201
  "clean": "rm -rf dist build tmp node_modules yarn-error.log"
198
202
  },
199
- "gitHead": "3610eee2b5c264fca79f15a8480bbed6ac8a34b2"
203
+ "gitHead": "edd42186d9ff135d96afa8196dc2cee181e828a5"
200
204
  }
@@ -1 +0,0 @@
1
- export declare function unique<T = any>(items: T[]): T[];