Files
nrwl--nx/packages/expo/docs/build-list-examples.md
T
2026-07-13 12:38:36 +08:00

1.1 KiB

The build-list command allows to check the details of your Expo Application Services (EAS) build status.

project.json:

{
  "name": "mobile",
  //...
  "targets": {
    //...
    "build-list": {
      "executor": "@nx/expo:build-list",
      "options": {}
    }
    //...
  }
}
nx run mobile:build-list

Examples

Get Status of Different Platforms

The platform option allows you to check build status of different platform (e.g. android, ios, all):

    "build-list": {
      "executor": "@nx/expo:build-list",
      "options": {
        "platform": "ios"
      }
    }
Get Status Interactively

The interactive option allows you to specify whether to use interactive mode:

    "build-list": {
      "executor": "@nx/expo:build-list",
      "options": {
        "interactive": true
      }
    }
Get Status in JSON Format

The json option allows you to print the output in JSON format:

    "build-list": {
      "executor": "@nx/expo:build-list",
      "options": {
        "interactive": false,
        "json": true
      }
    }