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.

40 lines (39 loc) 980 B
{ "cli": "nx", "version": 2, "outputCapture": "direct-nodejs", "$id": "NxExpoInstall", "$schema": "https://json-schema.org/schema", "title": "Expo Install", "description": "Install a module or other package to a project.", "type": "object", "properties": { "packages": { "type": "array", "items": { "type": "string" }, "default": [], "description": "The names of packages to install", "$default": { "$source": "argv", "index": 0 } }, "check": { "type": "boolean", "description": "Check which installed packages need to be updated", "default": false }, "fix": { "type": "boolean", "description": "Automatically update any invalid package versions", "default": false }, "force": { "type": "boolean", "description": "Force the installation of a package, even if it is already installed", "default": false } } }