eas-cli 16.25.1 → 16.27.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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "16.25.1",
2
+ "version": "16.27.0",
3
3
  "commands": {
4
4
  "analytics": {
5
5
  "id": "analytics",
@@ -3003,7 +3003,6 @@
3003
3003
  "pluginName": "eas-cli",
3004
3004
  "pluginAlias": "eas-cli",
3005
3005
  "pluginType": "core",
3006
- "hidden": true,
3007
3006
  "aliases": [
3008
3007
  "new"
3009
3008
  ],
@@ -4293,6 +4292,49 @@
4293
4292
  "loggedIn": {}
4294
4293
  }
4295
4294
  },
4295
+ "workflow:status": {
4296
+ "id": "workflow:status",
4297
+ "description": "show the status of an existing workflow run. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.",
4298
+ "strict": true,
4299
+ "pluginName": "eas-cli",
4300
+ "pluginAlias": "eas-cli",
4301
+ "pluginType": "core",
4302
+ "aliases": [],
4303
+ "flags": {
4304
+ "non-interactive": {
4305
+ "name": "non-interactive",
4306
+ "type": "boolean",
4307
+ "description": "Run the command in non-interactive mode.",
4308
+ "allowNo": false
4309
+ },
4310
+ "wait": {
4311
+ "name": "wait",
4312
+ "type": "boolean",
4313
+ "summary": "Wait for workflow run to complete. Defaults to false.",
4314
+ "description": "Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.",
4315
+ "allowNo": true
4316
+ },
4317
+ "json": {
4318
+ "name": "json",
4319
+ "type": "boolean",
4320
+ "description": "Enable JSON output, non-JSON messages will be printed to stderr.",
4321
+ "allowNo": false
4322
+ }
4323
+ },
4324
+ "args": {
4325
+ "WORKFLOW_RUN_ID": {
4326
+ "name": "WORKFLOW_RUN_ID",
4327
+ "description": "A workflow run ID."
4328
+ }
4329
+ },
4330
+ "contextDefinition": {
4331
+ "getDynamicPublicProjectConfigAsync": {},
4332
+ "getDynamicPrivateProjectConfigAsync": {},
4333
+ "projectDir": {},
4334
+ "vcsClient": {},
4335
+ "loggedIn": {}
4336
+ }
4337
+ },
4296
4338
  "workflow:validate": {
4297
4339
  "id": "workflow:validate",
4298
4340
  "description": "validate a workflow configuration yaml file",
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.25.1",
4
+ "version": "16.27.0",
5
5
  "author": "Expo <support@expo.dev>",
6
6
  "bin": {
7
7
  "eas": "./bin/run"
@@ -226,11 +226,12 @@
226
226
  "prepack": "yarn rebuild && node ./scripts/prepack.js",
227
227
  "rebuild": "rimraf build && yarn build",
228
228
  "pretarball-ci": "./scripts/pretarball-ci.sh",
229
- "build": "tsc --project tsconfig.build.json && yarn copy-new-templates",
229
+ "build": "yarn typecheck-for-build && yarn copy-new-templates",
230
230
  "build-allow-unused": "tsc --project tsconfig.allowUnused.json",
231
- "watch": "yarn build --watch --preserveWatchOutput",
231
+ "watch": "yarn typecheck-for-build --watch --preserveWatchOutput",
232
232
  "watch-allow-unused": "yarn build-allow-unused --watch --preserveWatchOutput",
233
233
  "typecheck": "tsc",
234
+ "typecheck-for-build": "tsc --project tsconfig.build.json",
234
235
  "test": "jest",
235
236
  "version": "yarn oclif readme && node scripts/patch-readme && git add README.md",
236
237
  "generate-graphql-code": "graphql-codegen --config graphql-codegen.yml",
@@ -242,5 +243,5 @@
242
243
  "node": "20.11.0",
243
244
  "yarn": "1.22.21"
244
245
  },
245
- "gitHead": "97255ec90ddaebd837f7f68529591500e07fab4d"
246
+ "gitHead": "ed8170047b9250e228495dda15d37b5a038e0aa2"
246
247
  }