eas-cli 18.10.0 → 18.12.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 +107 -102
- package/build/build/runBuildAndSubmit.d.ts +3 -1
- package/build/build/runBuildAndSubmit.js +12 -4
- package/build/build/utils/repository.js +8 -0
- package/build/build/validateLockfile.d.ts +1 -0
- package/build/build/validateLockfile.js +37 -0
- package/build/commandUtils/buildFlags.d.ts +1 -0
- package/build/commandUtils/buildFlags.js +18 -0
- package/build/commandUtils/convex.d.ts +1 -0
- package/build/commandUtils/convex.js +8 -2
- package/build/commands/build/dev.d.ts +1 -0
- package/build/commands/build/dev.js +12 -2
- package/build/commands/build/run.d.ts +1 -0
- package/build/commands/build/run.js +12 -3
- package/build/commands/integrations/convex/connect.d.ts +1 -0
- package/build/commands/integrations/convex/connect.js +65 -7
- package/build/commands/integrations/convex/team/invite.js +6 -1
- package/build/commands/observe/events.js +12 -24
- package/build/commands/observe/logs.d.ts +29 -0
- package/build/commands/observe/logs.js +163 -0
- package/build/commands/observe/metrics.js +11 -19
- package/build/commands/observe/versions.js +11 -19
- package/build/commands/simulator/start.js +85 -92
- package/build/commands/simulator/stop.js +1 -1
- package/build/graphql/generated.d.ts +290 -10
- package/build/graphql/generated.js +32 -3
- package/build/graphql/mutations/DeviceRunSessionMutation.d.ts +2 -2
- package/build/graphql/mutations/DeviceRunSessionMutation.js +4 -4
- package/build/graphql/queries/DeviceRunSessionQuery.js +8 -1
- package/build/graphql/queries/ObserveQuery.d.ts +21 -1
- package/build/graphql/queries/ObserveQuery.js +80 -0
- package/build/graphql/types/ConvexTeamConnection.d.ts +1 -1
- package/build/graphql/types/ConvexTeamConnection.js +1 -0
- package/build/graphql/types/Observe.d.ts +1 -0
- package/build/graphql/types/Observe.js +26 -1
- package/build/observe/fetchCustomEvents.d.ts +19 -0
- package/build/observe/fetchCustomEvents.js +21 -0
- package/build/observe/formatCustomEvents.d.ts +70 -0
- package/build/observe/formatCustomEvents.js +140 -0
- package/build/observe/formatEvents.js +5 -34
- package/build/observe/formatMetrics.js +2 -7
- package/build/observe/formatUtils.d.ts +27 -0
- package/build/observe/formatUtils.js +64 -0
- package/build/observe/formatVersions.js +2 -9
- package/build/observe/platforms.d.ts +21 -0
- package/build/observe/platforms.js +48 -0
- package/build/observe/resolveProjectContext.d.ts +22 -0
- package/build/observe/resolveProjectContext.js +21 -0
- package/build/run/ios/run.d.ts +2 -1
- package/build/run/ios/run.js +6 -2
- package/build/run/ios/simulator.d.ts +4 -1
- package/build/run/ios/simulator.js +14 -2
- package/build/run/run.d.ts +2 -1
- package/build/run/run.js +2 -2
- package/oclif.manifest.json +568 -375
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.12.0",
|
|
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.12.0",
|
|
51
|
+
"@expo/eas-json": "18.12.0",
|
|
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.12.0",
|
|
67
67
|
"@expo/timeago.js": "1.0.0",
|
|
68
68
|
"@oclif/core": "^4.8.3",
|
|
69
69
|
"@oclif/plugin-autocomplete": "^3.2.40",
|
|
@@ -250,5 +250,5 @@
|
|
|
250
250
|
"engines": {
|
|
251
251
|
"node": ">=20.0.0"
|
|
252
252
|
},
|
|
253
|
-
"gitHead": "
|
|
253
|
+
"gitHead": "53d294330de9c63eb792f646c0603224def9a1b0"
|
|
254
254
|
}
|