eas-cli 3.13.3 → 3.14.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 +55 -55
- package/build/api.d.ts +1 -0
- package/build/api.js +14 -1
- package/build/build/configure.d.ts +1 -0
- package/build/build/configure.js +8 -4
- package/build/build/local.js +1 -1
- package/build/build/runBuildAndSubmit.js +29 -0
- package/build/commandUtils/EasCommand.js +3 -1
- package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +3 -3
- package/build/commands/account/login.d.ts +3 -0
- package/build/commands/account/login.js +12 -1
- package/build/commands/build/configure.js +5 -1
- package/build/commands/project/init.js +1 -1
- package/build/commands/update/configure.js +14 -15
- package/build/credentials/android/api/GraphqlClient.d.ts +1 -0
- package/build/credentials/android/api/GraphqlClient.js +5 -7
- package/build/credentials/android/api/graphql/mutations/AndroidAppBuildCredentialsMutation.d.ts +1 -0
- package/build/credentials/android/api/graphql/mutations/AndroidAppBuildCredentialsMutation.js +23 -0
- package/build/credentials/ios/appstore/bundleIdCapabilities.js +43 -0
- package/build/credentials/manager/Actions.d.ts +11 -10
- package/build/credentials/manager/Actions.js +11 -10
- package/build/credentials/manager/AndroidActions.js +5 -0
- package/build/credentials/manager/CreateAndroidBuildCredentials.d.ts +8 -0
- package/build/credentials/manager/CreateAndroidBuildCredentials.js +33 -0
- package/build/credentials/manager/ManageAndroid.js +6 -15
- package/build/credentials/manager/SetDefaultAndroidKeystore.d.ts +8 -0
- package/build/credentials/manager/SetDefaultAndroidKeystore.js +41 -0
- package/build/graphql/generated.d.ts +76 -12
- package/build/graphql/generated.js +13 -2
- package/build/graphql/queries/UserQuery.js +2 -5
- package/build/project/expoConfig.d.ts +5 -1
- package/build/project/expoConfig.js +58 -1
- package/build/project/projectUtils.d.ts +2 -0
- package/build/project/projectUtils.js +14 -3
- package/build/update/configure.js +9 -5
- package/build/user/SessionManager.d.ts +3 -1
- package/build/user/SessionManager.js +16 -2
- package/build/user/User.d.ts +1 -1
- package/build/user/User.js +1 -1
- package/build/user/actions.js +1 -1
- package/build/user/expoSsoLauncher.d.ts +4 -0
- package/build/user/expoSsoLauncher.js +71 -0
- package/build/user/fetchSessionSecretAndSsoUser.d.ts +5 -0
- package/build/user/fetchSessionSecretAndSsoUser.js +20 -0
- package/build/user/fetchSessionSecretAndUser.js +4 -24
- package/build/user/fetchUser.d.ts +6 -0
- package/build/user/fetchUser.js +27 -0
- package/build/utils/expoCli.js +12 -2
- package/build/utils/port.d.ts +2 -0
- package/build/utils/port.js +14 -0
- package/build/vcs/clients/git.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
3
|
"description": "EAS command line tool",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.14.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": "1.
|
|
11
|
+
"@expo/apple-utils": "1.3.1",
|
|
12
12
|
"@expo/code-signing-certificates": "0.0.5",
|
|
13
13
|
"@expo/config": "7.0.3",
|
|
14
14
|
"@expo/config-plugins": "6.0.2",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@expo/results": "1.0.0",
|
|
28
28
|
"@expo/rudder-sdk-node": "1.1.1",
|
|
29
29
|
"@expo/spawn-async": "1.7.0",
|
|
30
|
-
"@expo/steps": "1.0.
|
|
30
|
+
"@expo/steps": "1.0.23",
|
|
31
31
|
"@expo/timeago.js": "1.0.0",
|
|
32
32
|
"@oclif/core": "1.23.2",
|
|
33
33
|
"@oclif/plugin-autocomplete": "1.3.10",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"fast-glob": "3.2.12",
|
|
48
48
|
"figures": "3.2.0",
|
|
49
49
|
"form-data": "4.0.0",
|
|
50
|
+
"freeport-async": "2.0.0",
|
|
50
51
|
"fs-extra": "10.1.0",
|
|
51
52
|
"getenv": "1.0.0",
|
|
52
53
|
"gradle-to-js": "2.0.1",
|
|
@@ -218,5 +219,5 @@
|
|
|
218
219
|
"node": "18.6.0",
|
|
219
220
|
"yarn": "1.22.19"
|
|
220
221
|
},
|
|
221
|
-
"gitHead": "
|
|
222
|
+
"gitHead": "37f8e117e1c12802a9e32576ac9d765b87d35c55"
|
|
222
223
|
}
|