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.

37 lines (36 loc) 1.06 kB
{ "cli": "nx", "version": 2, "outputCapture": "direct-nodejs", "$id": "NxExpoPrebuild", "$schema": "https://json-schema.org/schema", "title": "Expo Prebuild", "description": "Create native iOS and Android project files for building natively.", "type": "object", "properties": { "clean": { "type": "boolean", "description": "Delete the native folders and regenerate them before applying changes", "default": false }, "install": { "type": "boolean", "description": "Installing npm packages and CocoaPods.", "default": true, "x-priority": "internal" }, "platform": { "description": "Platforms to sync", "default": "all", "enum": ["ios", "android", "all"], "alias": "p", "x-priority": "important" }, "template": { "type": "string", "description": "Project template to clone from. File path pointing to a local tar file or a github repo" } }, "required": ["platform"], "examplesFile": "../../../docs/prebuild-examples.md" }