eas-cli 16.19.1 → 16.19.3
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 +85 -85
- package/build/build/utils/formatBuild.d.ts +2 -0
- package/build/build/utils/formatBuild.js +34 -22
- package/build/commands/update/index.d.ts +0 -1
- package/build/commands/update/index.js +54 -34
- package/build/commands/workflow/view.js +75 -6
- package/build/graphql/generated.d.ts +265 -0
- package/build/graphql/generated.js +1 -0
- package/build/graphql/types/WorkflowJob.js +14 -0
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.WorkflowJobFragmentNode = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const graphql_tag_1 = tslib_1.__importDefault(require("graphql-tag"));
|
|
6
|
+
const Build_1 = require("./Build");
|
|
6
7
|
exports.WorkflowJobFragmentNode = (0, graphql_tag_1.default) `
|
|
7
8
|
fragment WorkflowJobFragment on WorkflowJob {
|
|
8
9
|
id
|
|
@@ -16,11 +17,23 @@ exports.WorkflowJobFragmentNode = (0, graphql_tag_1.default) `
|
|
|
16
17
|
turtleJobRun {
|
|
17
18
|
id
|
|
18
19
|
logFileUrls
|
|
20
|
+
artifacts {
|
|
21
|
+
id
|
|
22
|
+
name
|
|
23
|
+
contentType
|
|
24
|
+
fileSizeBytes
|
|
25
|
+
filename
|
|
26
|
+
downloadUrl
|
|
27
|
+
}
|
|
19
28
|
errors {
|
|
20
29
|
errorCode
|
|
21
30
|
message
|
|
22
31
|
}
|
|
23
32
|
}
|
|
33
|
+
turtleBuild {
|
|
34
|
+
id
|
|
35
|
+
...BuildFragment
|
|
36
|
+
}
|
|
24
37
|
outputs
|
|
25
38
|
errors {
|
|
26
39
|
title
|
|
@@ -29,4 +42,5 @@ exports.WorkflowJobFragmentNode = (0, graphql_tag_1.default) `
|
|
|
29
42
|
createdAt
|
|
30
43
|
updatedAt
|
|
31
44
|
}
|
|
45
|
+
${Build_1.BuildFragmentNode}
|
|
32
46
|
`;
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
3
|
"description": "EAS command line tool",
|
|
4
|
-
"version": "16.19.
|
|
4
|
+
"version": "16.19.3",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bin": {
|
|
7
7
|
"eas": "./bin/run"
|
|
@@ -241,5 +241,5 @@
|
|
|
241
241
|
"node": "20.11.0",
|
|
242
242
|
"yarn": "1.22.21"
|
|
243
243
|
},
|
|
244
|
-
"gitHead": "
|
|
244
|
+
"gitHead": "6c5c99b5d1ae1087686a2fcbf09a313e615aff67"
|
|
245
245
|
}
|