eas-cli 18.12.3 → 18.13.1
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 +100 -100
- package/build/build/metadata.js +10 -0
- package/build/commandUtils/new/commands.js +3 -10
- package/build/commands/observe/events.d.ts +7 -7
- package/build/commands/observe/events.js +7 -29
- package/build/commands/observe/logs.d.ts +8 -8
- package/build/commands/observe/logs.js +7 -29
- package/build/commands/observe/metrics.d.ts +4 -4
- package/build/commands/observe/metrics.js +4 -20
- package/build/commands/observe/routes.d.ts +27 -0
- package/build/commands/observe/routes.js +106 -0
- package/build/commands/observe/versions.d.ts +2 -2
- package/build/commands/observe/versions.js +4 -21
- package/build/commands/project/onboarding.js +7 -17
- package/build/graphql/generated.d.ts +56 -0
- package/build/graphql/queries/ObserveQuery.d.ts +12 -1
- package/build/graphql/queries/ObserveQuery.js +54 -0
- package/build/log.js +4 -3
- package/build/observe/fetchMetrics.js +2 -6
- package/build/observe/fetchNavigationRoutes.d.ts +22 -0
- package/build/observe/fetchNavigationRoutes.js +51 -0
- package/build/observe/flags.d.ts +20 -0
- package/build/observe/flags.js +46 -0
- package/build/observe/formatNavigationRoutes.d.ts +34 -0
- package/build/observe/formatNavigationRoutes.js +170 -0
- package/build/observe/metricNames.d.ts +2 -0
- package/build/observe/metricNames.js +22 -3
- package/build/observe/platforms.d.ts +1 -0
- package/build/observe/platforms.js +5 -1
- package/build/project/expoConfig.js +7 -26
- package/build/project/ios/entitlements.d.ts +1 -2
- package/build/project/ios/entitlements.js +7 -44
- package/build/project/ios/target.js +1 -1
- package/build/utils/expoCli.d.ts +3 -0
- package/build/utils/expoCli.js +15 -7
- package/oclif.manifest.json +281 -87
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.13.1",
|
|
4
4
|
"description": "EAS command line tool",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"@expo/code-signing-certificates": "0.0.5",
|
|
48
48
|
"@expo/config": "55.0.10",
|
|
49
49
|
"@expo/config-plugins": "55.0.7",
|
|
50
|
-
"@expo/eas-build-job": "18.
|
|
51
|
-
"@expo/eas-json": "18.
|
|
50
|
+
"@expo/eas-build-job": "18.13.1",
|
|
51
|
+
"@expo/eas-json": "18.13.1",
|
|
52
52
|
"@expo/env": "^1.0.0",
|
|
53
53
|
"@expo/json-file": "8.3.3",
|
|
54
54
|
"@expo/logger": "18.5.0",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"@expo/results": "1.0.0",
|
|
64
64
|
"@expo/rudder-sdk-node": "1.1.1",
|
|
65
65
|
"@expo/spawn-async": "1.7.2",
|
|
66
|
-
"@expo/steps": "18.
|
|
66
|
+
"@expo/steps": "18.13.1",
|
|
67
67
|
"@expo/timeago.js": "1.0.0",
|
|
68
68
|
"@oclif/core": "^4.8.3",
|
|
69
69
|
"@oclif/plugin-autocomplete": "^3.2.40",
|
|
@@ -78,6 +78,7 @@
|
|
|
78
78
|
"chalk": "4.1.2",
|
|
79
79
|
"cli-progress": "3.12.0",
|
|
80
80
|
"dateformat": "4.6.3",
|
|
81
|
+
"debug": "4.4.3",
|
|
81
82
|
"diff": "7.0.0",
|
|
82
83
|
"dotenv": "16.3.1",
|
|
83
84
|
"env-paths": "2.2.0",
|
|
@@ -138,6 +139,7 @@
|
|
|
138
139
|
"@tsconfig/node20": "20.1.8",
|
|
139
140
|
"@types/cli-progress": "3.11.5",
|
|
140
141
|
"@types/dateformat": "3.0.1",
|
|
142
|
+
"@types/debug": "4.1.13",
|
|
141
143
|
"@types/diff": "6.0.0",
|
|
142
144
|
"@types/envinfo": "7.8.3",
|
|
143
145
|
"@types/express": "4.17.15",
|
|
@@ -250,5 +252,5 @@
|
|
|
250
252
|
"engines": {
|
|
251
253
|
"node": ">=20.0.0"
|
|
252
254
|
},
|
|
253
|
-
"gitHead": "
|
|
255
|
+
"gitHead": "dbf597957dc93133d15e99298c55c0ad31b994c1"
|
|
254
256
|
}
|