@nrwl/expo:application
Usage
nx generate application ...
nx g app ... #same
By default, Nx will search for application
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
nx g @nrwl/expo:application ...
Show what will be generated without writing to disk:
nx g application ... --dry-run
Examples
Generate apps/nested/myapp:
g app myapp --directory=nested
Use class components instead of functional components:
g app myapp --classComponent