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.

39 lines (38 loc) 1.44 kB
{ "name": "Nx Expo", "version": "0.1", "extends": ["@nx/workspace"], "generators": { "init": { "factory": "./src/generators/init/init#expoInitGeneratorInternal", "schema": "./src/generators/init/schema.json", "description": "Initialize the @nx/expo plugin", "hidden": true }, "application": { "factory": "./src/generators/application/application#expoApplicationGeneratorInternal", "schema": "./src/generators/application/schema.json", "aliases": ["app"], "x-type": "application", "description": "Create an application" }, "library": { "factory": "./src/generators/library/library#expoLibraryGeneratorInternal", "schema": "./src/generators/library/schema.json", "aliases": ["lib"], "x-type": "library", "description": "Create a library" }, "component": { "factory": "./src/generators/component/component", "schema": "./src/generators/component/schema.json", "description": "Create a component", "aliases": ["c"] }, "convert-to-inferred": { "factory": "./src/generators/convert-to-inferred/convert-to-inferred", "schema": "./src/generators/convert-to-inferred/schema.json", "description": "Convert existing Expo project(s) using `@nx/expo:*` executors to use `@nx/expo/plugin`. Defaults to migrating all projects. Pass '--project' to migrate only one target." } } }