UNPKG

@nx/expo

Version:

The Expo Plugin for Nx contains executors and generators for managing and developing an expo application within your workspace. For example, you can directly build for different target platforms as well as generate projects and publish your code.

80 lines (79 loc) 2.08 kB
{ "version": 2, "outputCapture": "direct-nodejs", "$schema": "https://json-schema.org/schema", "$id": "NxExpoEasBuildList", "cli": "nx", "title": "Expo EAS Build List executor", "description": "List all Expo Application Services (EAS) builds for your Expo project.", "type": "object", "properties": { "platform": { "enum": ["ios", "android", "all"], "alias": "p", "description": "The platform to build the app.", "x-priority": "important" }, "json": { "type": "boolean", "description": "Enable JSON output, non-JSON messages will be printed to stderr" }, "interactive": { "type": "boolean", "description": "Run the command in interactive mode." }, "status": { "enum": [ "new", "in-queue", "in-progress", "errored", "finished", "canceled" ], "description": "Status of EAS build" }, "distribution": { "enum": ["store", "internal", "simulator"], "description": "Distribution of EAS build" }, "channel": { "type": "string", "description": "Channel of EAS build" }, "appVersion": { "type": "string", "description": "App version of EAS build" }, "appBuildVersion": { "type": "string", "description": "App build version of EAS build" }, "sdkVersion": { "type": "string", "description": "SDK version of EAS build" }, "runtimeVersion": { "type": "string", "description": "Runtime version of EAS build" }, "appIdentifier": { "type": "string", "description": "App identifier of EAS build" }, "buildProfile": { "type": "string", "description": "Build profile of EAS build" }, "gitCommitHash": { "type": "string", "description": "Git commit hash of EAS build" }, "limit": { "type": "number", "description": "Limit of numbers to list EAS builds" } }, "required": [], "examplesFile": "../../../docs/build-list-examples.md" }