@nrwl/react-native:library
Create a React Native Library for Nx.
Usage
nx generate library ...
nx g lib ... #same
By default, Nx will search for library
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
nx g @nrwl/react-native:library ...
Show what will be generated without writing to disk:
nx g library ... --dry-run
Examples
Generate libs/myapp/mylib
:
nx g lib mylib --directory=myapp
Options
buildable
false
Generate a buildable library.
directory
A directory where the lib is placed.
globalCss
false
When true
, the stylesheet is generated using global CSS instead of CSS modules (e.g. file is *.css
rather than *.module.css
).
importPath
The library name used to import it, like @myorg/my-awesome-lib
.
js
false
Generate JavaScript files rather than TypeScript files.
linter
eslint
eslint
, tslint
The tool to use for running lint checks.
name
^[a-zA-Z].*$
Library name.
pascalCaseFiles
false
Use pascal case component file name (e.g. App.tsx
).
publishable
Create a publishable library.
skipFormat
false
Skip formatting files.
skipTsConfig
false
Do not update tsconfig.json
for development experience.
strict
true
Whether to enable tsconfig strict mode or not.
setParserOptionsProject
false
Whether or not to configure the ESLint parserOptions.project
option. We do not do this by default for lint performance reasons.
tags
Add tags to the library (used for linting).
unitTestRunner
jest
jest
, none
Test runner to use for unit tests.