eas-cli 15.0.14 → 16.0.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 +74 -74
- package/build/ApiV2Error.d.ts +2 -0
- package/build/ApiV2Error.js +2 -0
- package/build/build/build.js +2 -2
- package/build/commands/build/dev.js +2 -2
- package/build/commands/fingerprint/compare.js +10 -88
- package/build/commands/fingerprint/generate.d.ts +21 -0
- package/build/commands/fingerprint/generate.js +81 -0
- package/build/{utils/fingerprintCli.d.ts → fingerprint/cli.d.ts} +1 -1
- package/build/{utils/fingerprintCli.js → fingerprint/cli.js} +1 -1
- package/build/fingerprint/utils.d.ts +9 -0
- package/build/fingerprint/utils.js +93 -0
- package/build/project/projectUtils.d.ts +1 -0
- package/build/project/projectUtils.js +2 -1
- package/build/project/publish.js +2 -2
- package/build/run/utils.js +1 -1
- package/build/update/android/UpdatesModule.js +2 -1
- package/build/update/ios/UpdatesModule.js +2 -1
- package/build/vcs/clients/git.js +7 -4
- package/build/vcs/clients/noVcs.js +7 -3
- package/oclif.manifest.json +50 -1
- package/package.json +3 -3
- /package/build/{utils/fingerprintDiff.d.ts → fingerprint/diff.d.ts} +0 -0
- /package/build/{utils/fingerprintDiff.js → fingerprint/diff.js} +0 -0
- /package/build/{utils/fingerprint.d.ts → fingerprint/types.d.ts} +0 -0
- /package/build/{utils/fingerprint.js → fingerprint/types.js} +0 -0
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "16.0.0",
|
|
3
3
|
"commands": {
|
|
4
4
|
"analytics": {
|
|
5
5
|
"id": "analytics",
|
|
@@ -2845,6 +2845,55 @@
|
|
|
2845
2845
|
"vcsClient": {}
|
|
2846
2846
|
}
|
|
2847
2847
|
},
|
|
2848
|
+
"fingerprint:generate": {
|
|
2849
|
+
"id": "fingerprint:generate",
|
|
2850
|
+
"description": "generate fingerprints from the current project",
|
|
2851
|
+
"strict": false,
|
|
2852
|
+
"pluginName": "eas-cli",
|
|
2853
|
+
"pluginAlias": "eas-cli",
|
|
2854
|
+
"pluginType": "core",
|
|
2855
|
+
"hidden": true,
|
|
2856
|
+
"aliases": [],
|
|
2857
|
+
"examples": [
|
|
2858
|
+
"$ eas fingerprint:generate",
|
|
2859
|
+
"$ eas fingerprint:generate --json --non-interactive -p android"
|
|
2860
|
+
],
|
|
2861
|
+
"flags": {
|
|
2862
|
+
"platform": {
|
|
2863
|
+
"name": "platform",
|
|
2864
|
+
"type": "option",
|
|
2865
|
+
"char": "p",
|
|
2866
|
+
"helpValue": "(android|ios)",
|
|
2867
|
+
"multiple": false,
|
|
2868
|
+
"options": [
|
|
2869
|
+
"android",
|
|
2870
|
+
"ios"
|
|
2871
|
+
]
|
|
2872
|
+
},
|
|
2873
|
+
"json": {
|
|
2874
|
+
"name": "json",
|
|
2875
|
+
"type": "boolean",
|
|
2876
|
+
"description": "Enable JSON output, non-JSON messages will be printed to stderr.",
|
|
2877
|
+
"allowNo": false,
|
|
2878
|
+
"dependsOn": [
|
|
2879
|
+
"non-interactive"
|
|
2880
|
+
]
|
|
2881
|
+
},
|
|
2882
|
+
"non-interactive": {
|
|
2883
|
+
"name": "non-interactive",
|
|
2884
|
+
"type": "boolean",
|
|
2885
|
+
"description": "Run the command in non-interactive mode.",
|
|
2886
|
+
"allowNo": false
|
|
2887
|
+
}
|
|
2888
|
+
},
|
|
2889
|
+
"args": {},
|
|
2890
|
+
"contextDefinition": {
|
|
2891
|
+
"projectId": {},
|
|
2892
|
+
"loggedIn": {},
|
|
2893
|
+
"privateProjectConfig": {},
|
|
2894
|
+
"vcsClient": {}
|
|
2895
|
+
}
|
|
2896
|
+
},
|
|
2848
2897
|
"metadata:lint": {
|
|
2849
2898
|
"id": "metadata:lint",
|
|
2850
2899
|
"description": "validate the local store configuration",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eas-cli",
|
|
3
3
|
"description": "EAS command line tool",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "16.0.0",
|
|
5
5
|
"author": "Expo <support@expo.dev>",
|
|
6
6
|
"bin": {
|
|
7
7
|
"eas": "./bin/run"
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"@expo/config": "10.0.6",
|
|
14
14
|
"@expo/config-plugins": "9.0.12",
|
|
15
15
|
"@expo/eas-build-job": "1.0.170",
|
|
16
|
-
"@expo/eas-json": "
|
|
16
|
+
"@expo/eas-json": "16.0.0",
|
|
17
17
|
"@expo/env": "^1.0.0",
|
|
18
18
|
"@expo/json-file": "8.3.3",
|
|
19
19
|
"@expo/logger": "1.0.117",
|
|
@@ -237,5 +237,5 @@
|
|
|
237
237
|
"node": "20.11.0",
|
|
238
238
|
"yarn": "1.22.21"
|
|
239
239
|
},
|
|
240
|
-
"gitHead": "
|
|
240
|
+
"gitHead": "924f51ecb600d942115c97153d4f221823f4af5e"
|
|
241
241
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|