@nx/expo
Version:
41 lines (40 loc) • 1.25 kB
JSON
{
"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",
"x-deprecated": "The `@nx/expo:install` executor is deprecated and will be removed in Nx v24. Run `nx g @nx/expo:convert-to-inferred` to migrate to the `@nx/expo/plugin` inferred plugin. See https://nx.dev/docs/guides/tasks--caching/convert-to-inferred for details.",
"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
}
}
}