@nx/expo:build-list

List all Expo Application Services (EAS) builds for your Expo project.

Options can be configured in project.json when defining the executor, or when invoking it. Read more about how to configure targets and executors here: https://nx.dev/reference/project-configuration#targets.

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

project.json:

1{ 2 "name": "mobile", 3 //... 4 "targets": { 5 //... 6 "build-list": { 7 "executor": "@nx/expo:build-list", 8 "options": {} 9 } 10 //... 11 } 12} 13

nx run mobile:build-list

Examples

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

1 "build-list": { 2 "executor": "@nx/expo:build-list", 3 "options": { 4 "platform": "ios" 5 } 6 } 7

Options

platform

p
string
Accepted values: ios, android, all

The platform to build the app.

appVersion

string

App version of EAS build

appBuildVersion

string

App build version of EAS build

appIdentifier

string

App identifier of EAS build

buildProfile

string

Build profile of EAS build

channel

string

Channel of EAS build

distribution

string
Accepted values: store, internal, simulator

Distribution of EAS build

gitCommitHash

string

Git commit hash of EAS build

interactive

boolean

Run the command in interactive mode.

json

boolean

Enable JSON output, non-JSON messages will be printed to stderr

limit

number

Limit of numbers to list EAS builds

runtimeVersion

string

Runtime version of EAS build

status

string
Accepted values: new, in-queue, in-progress, errored, finished, canceled

Status of EAS build

sdkVersion

string

SDK version of EAS build